Source

encryption-parameter-qualifiers.ts

  1. import { Instance } from './seal'
  2. import { SecurityLevel } from './security-level'
  3. export type EncryptionParameterQualifiersDependencies = {
  4. (): EncryptionParameterQualifiersConstructorOptions
  5. }
  6. export type EncryptionParameterQualifiersConstructorOptions = {
  7. (): EncryptionParameterQualifiers
  8. }
  9. export type EncryptionParameterQualifiers = {
  10. readonly instance: Instance
  11. readonly unsafeInject: (instance: Instance) => void
  12. readonly delete: () => void
  13. readonly parametersSet: () => boolean
  14. readonly usingFFT: boolean
  15. readonly usingNTT: boolean
  16. readonly usingBatching: boolean
  17. readonly usingFastPlainLift: boolean
  18. readonly usingDescendingModulusChain: boolean
  19. readonly securityLevel: SecurityLevel
  20. }
  21. const EncryptionParameterQualifiersConstructor =
  22. (): EncryptionParameterQualifiersDependencies =>
  23. (): EncryptionParameterQualifiersConstructorOptions =>
  24. (): EncryptionParameterQualifiers => {
  25. let _instance: Instance
  26. /**
  27. * @implements EncryptionParameterQualifiers
  28. */
  29. /**
  30. * @interface EncryptionParameterQualifiers
  31. */
  32. return {
  33. /**
  34. * Get the underlying WASM instance
  35. *
  36. * @private
  37. * @readonly
  38. * @name EncryptionParameterQualifiers#instance
  39. * @type {Instance}
  40. */
  41. get instance() {
  42. return _instance
  43. },
  44. /**
  45. * Inject this object with a raw WASM instance. No type checking is performed.
  46. *
  47. * @private
  48. * @function
  49. * @name EncryptionParameterQualifiers#unsafeInject
  50. * @param {Instance} instance WASM instance
  51. */
  52. unsafeInject(instance: Instance) {
  53. if (_instance) {
  54. _instance.delete()
  55. _instance = undefined
  56. }
  57. _instance = instance
  58. },
  59. /**
  60. * Delete the underlying WASM instance.
  61. *
  62. * Should be called before dereferencing this object to prevent the
  63. * WASM heap from growing indefinitely.
  64. * @function
  65. * @name EncryptionParameterQualifiers#delete
  66. */
  67. delete() {
  68. if (_instance) {
  69. _instance.delete()
  70. _instance = undefined
  71. }
  72. },
  73. /**
  74. * If the encryption parameters are set in a way that is considered valid by
  75. * Microsoft SEAL, the variable parameters_set is set to true.
  76. *
  77. * @function
  78. * @name EncryptionParameterQualifiers#parametersSet
  79. * @type {boolean}
  80. */
  81. parametersSet() {
  82. return _instance.parametersSet()
  83. },
  84. /**
  85. * Tells whether FFT can be used for polynomial multiplication. If the
  86. * polynomial modulus is of the form X^N+1, where N is a power of two, then
  87. * FFT can be used for fast multiplication of polynomials modulo the polynomial
  88. * modulus. In this case the variable using_fft will be set to true. However,
  89. * currently Microsoft SEAL requires this to be the case for the parameters
  90. * to be valid. Therefore, parameters_set can only be true if using_fft is
  91. * true.
  92. *
  93. * @readonly
  94. * @name EncryptionParameterQualifiers#usingFFT
  95. * @type {boolean}
  96. */
  97. get usingFFT() {
  98. return _instance.usingFFT
  99. },
  100. /**
  101. * Tells whether NTT can be used for polynomial multiplication. If the primes
  102. * in the coefficient modulus are congruent to 1 modulo 2N, where X^N+1 is the
  103. * polynomial modulus and N is a power of two, then the number-theoretic
  104. * transform (NTT) can be used for fast multiplications of polynomials modulo
  105. * the polynomial modulus and coefficient modulus. In this case the variable
  106. * using_ntt will be set to true. However, currently Microsoft SEAL requires
  107. * this to be the case for the parameters to be valid. Therefore, parameters_set
  108. * can only be true if using_ntt is true.
  109. *
  110. * @readonly
  111. * @name EncryptionParameterQualifiers#usingNTT
  112. * @type {boolean}
  113. */
  114. get usingNTT() {
  115. return _instance.usingNTT
  116. },
  117. /**
  118. * Tells whether batching is supported by the encryption parameters. If the
  119. * plaintext modulus is congruent to 1 modulo 2N, where X^N+1 is the polynomial
  120. * modulus and N is a power of two, then it is possible to use the BatchEncoder
  121. * class to view plaintext elements as 2-by-(N/2) matrices of integers modulo
  122. * the plaintext modulus. This is called batching, and allows the user to
  123. * operate on the matrix elements (slots) in a SIMD fashion, and rotate the
  124. * matrix rows and columns. When the computation is easily vectorizable, using
  125. * batching can yield a huge performance boost. If the encryption parameters
  126. * support batching, the variable using_batching is set to true.
  127. *
  128. * @readonly
  129. * @name EncryptionParameterQualifiers#usingBatching
  130. * @type {boolean}
  131. */
  132. get usingBatching() {
  133. return _instance.usingBatching
  134. },
  135. /**
  136. * Tells whether fast plain lift is supported by the encryption parameters.
  137. * A certain performance optimization in multiplication of a ciphertext by
  138. * a plaintext (Evaluator::multiply_plain) and in transforming a plaintext
  139. * element to NTT domain (Evaluator::transform_to_ntt) can be used when the
  140. * plaintext modulus is smaller than each prime in the coefficient modulus.
  141. * In this case the variable using_fast_plain_lift is set to true.
  142. *
  143. * @readonly
  144. * @name EncryptionParameterQualifiers#usingFastPlainLift
  145. * @type {boolean}
  146. */
  147. get usingFastPlainLift() {
  148. return _instance.usingFastPlainLift
  149. },
  150. /**
  151. * Tells whether the coefficient modulus consists of a set of primes that
  152. * are in decreasing order. If this is true, certain modular reductions in
  153. * base conversion can be omitted, improving performance.
  154. *
  155. * @readonly
  156. * @name EncryptionParameterQualifiers#usingDescendingModulusChain
  157. * @type {boolean}
  158. */
  159. get usingDescendingModulusChain() {
  160. return _instance.usingDescendingModulusChain
  161. },
  162. /**
  163. * Tells whether the encryption parameters are secure based on the standard
  164. * parameters from HomomorphicEncryption.org security standard.
  165. *
  166. * @readonly
  167. * @name EncryptionParameterQualifiers#securityLevel
  168. * @type {(SecurityLevel.none|SecurityLevel.tc128|SecurityLevel.tc192|SecurityLevel.tc256)}
  169. */
  170. get securityLevel() {
  171. return _instance.securityLevel
  172. }
  173. }
  174. }
  175. export const EncryptionParameterQualifiersInit =
  176. (): EncryptionParameterQualifiersDependencies => {
  177. return EncryptionParameterQualifiersConstructor()
  178. }