ciphertext_docs.h 416 B

1234567891011121314151617181920
  1. #ifndef CIPHERTEXT_DOCSTRINGS_H
  2. #define CIPHERTEXT_DOCSTRINGS_H
  3. // GetLevel
  4. const char* ctx_GetLevel_docs = R"pbdoc(
  5. Get the number of scalings performed.
  6. :return: The level of the ciphertext.
  7. :rtype: int
  8. )pbdoc";
  9. // SetLevel
  10. const char* ctx_SetLevel_docs = R"pbdoc(
  11. Set the number of scalings.
  12. :param level: The level to set.
  13. :type level: int
  14. )pbdoc";
  15. #endif // CIPHERTEXT_DOCSTRINGS_H