pq_crypto 0.4.2 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +27 -2
- data/CHANGELOG.md +59 -0
- data/GET_STARTED.md +21 -16
- data/README.md +26 -0
- data/SECURITY.md +22 -16
- data/ext/pqcrypto/extconf.rb +183 -99
- data/ext/pqcrypto/mldsa_api.h +1 -118
- data/ext/pqcrypto/mlkem_api.h +1 -42
- data/ext/pqcrypto/pq_externalmu.c +88 -216
- data/ext/pqcrypto/pqcrypto_native_api.h +132 -0
- data/ext/pqcrypto/pqcrypto_ruby_secure.c +234 -12
- data/ext/pqcrypto/pqcrypto_secure.c +429 -334
- data/ext/pqcrypto/pqcrypto_secure.h +13 -45
- data/ext/pqcrypto/pqcrypto_version.h +1 -1
- data/ext/pqcrypto/randombytes.h +9 -0
- data/ext/pqcrypto/vendor/.vendored +12 -5
- data/ext/pqcrypto/vendor/mldsa-native/BUILDING.md +105 -0
- data/ext/pqcrypto/vendor/mldsa-native/LICENSE +286 -0
- data/ext/pqcrypto/vendor/mldsa-native/META.yml +24 -0
- data/ext/pqcrypto/vendor/mldsa-native/README.md +221 -0
- data/ext/pqcrypto/vendor/mldsa-native/SECURITY.md +8 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/mldsa_native.c +721 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/mldsa_native.h +975 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/mldsa_native_asm.S +724 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/mldsa_native_config.h +723 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/cbmc.h +166 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/common.h +321 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/ct.c +21 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/ct.h +385 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/debug.c +73 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/debug.h +130 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/fips202.c +277 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/fips202.h +244 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/fips202x4.c +182 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/fips202x4.h +117 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/keccakf1600.c +438 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/keccakf1600.h +105 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/auto.h +71 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/fips202_native_aarch64.h +62 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccak_f1600_x1_scalar_asm.S +376 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccak_f1600_x1_v84a_asm.S +204 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccak_f1600_x2_v84a_asm.S +259 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccak_f1600_x4_v8a_scalar_hybrid_asm.S +1077 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccak_f1600_x4_v8a_v84a_scalar_hybrid_asm.S +987 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccakf1600_round_constants.c +41 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/x1_scalar.h +26 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/x1_v84a.h +35 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/x2_v84a.h +37 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/x4_v8a_scalar.h +27 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/x4_v8a_v84a_scalar.h +36 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/api.h +69 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/armv81m/README.md +10 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/armv81m/mve.h +32 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/armv81m/src/fips202_native_armv81m.h +20 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/armv81m/src/keccak_f1600_x4_mve.S +638 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/armv81m/src/keccak_f1600_x4_mve.c +136 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/armv81m/src/keccakf1600_round_constants.c +52 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/auto.h +29 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/x86_64/src/KeccakP_1600_times4_SIMD256.c +488 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/x86_64/src/KeccakP_1600_times4_SIMD256.h +16 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/x86_64/xkcp.h +31 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/meta.h +247 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/aarch64_zetas.c +231 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/arith_native_aarch64.h +150 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/intt.S +753 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/mld_polyvecl_pointwise_acc_montgomery_l4.S +129 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/mld_polyvecl_pointwise_acc_montgomery_l5.S +145 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/mld_polyvecl_pointwise_acc_montgomery_l7.S +177 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/ntt.S +653 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/pointwise_montgomery.S +79 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_caddq_asm.S +53 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_chknorm_asm.S +55 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_decompose_32_asm.S +85 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_decompose_88_asm.S +85 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_use_hint_32_asm.S +102 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_use_hint_88_asm.S +110 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/polyz_unpack_17_asm.S +72 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/polyz_unpack_19_asm.S +69 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/polyz_unpack_table.c +40 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/rej_uniform_asm.S +189 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/rej_uniform_eta2_asm.S +135 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/rej_uniform_eta4_asm.S +128 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/rej_uniform_eta_table.c +543 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/rej_uniform_table.c +62 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/api.h +649 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/meta.h +23 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/meta.h +315 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/arith_native_x86_64.h +124 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/consts.c +157 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/consts.h +27 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/intt.S +2311 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/ntt.S +2383 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/nttunpack.S +239 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/pointwise.S +131 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/pointwise_acc_l4.S +139 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/pointwise_acc_l5.S +155 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/pointwise_acc_l7.S +187 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/poly_caddq_avx2.c +61 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/poly_chknorm_avx2.c +52 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/poly_decompose_32_avx2.c +155 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/poly_decompose_88_avx2.c +155 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/poly_use_hint_32_avx2.c +102 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/poly_use_hint_88_avx2.c +104 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/polyz_unpack_17_avx2.c +91 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/polyz_unpack_19_avx2.c +93 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/rej_uniform_avx2.c +126 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/rej_uniform_eta2_avx2.c +155 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/rej_uniform_eta4_avx2.c +139 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/rej_uniform_table.c +160 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/packing.c +293 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/packing.h +224 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/params.h +77 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/poly.c +991 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/poly.h +393 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/poly_kl.c +946 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/poly_kl.h +360 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/polyvec.c +877 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/polyvec.h +725 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/randombytes.h +26 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/reduce.h +139 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/rounding.h +249 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/sign.c +1511 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/sign.h +806 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/symmetric.h +68 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/sys.h +268 -0
- data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/zetas.inc +55 -0
- data/ext/pqcrypto/vendor/mlkem-native/BUILDING.md +104 -0
- data/ext/pqcrypto/vendor/mlkem-native/LICENSE +294 -0
- data/ext/pqcrypto/vendor/mlkem-native/META.yml +30 -0
- data/ext/pqcrypto/vendor/mlkem-native/README.md +223 -0
- data/ext/pqcrypto/vendor/mlkem-native/RELEASE.md +86 -0
- data/ext/pqcrypto/vendor/mlkem-native/SECURITY.md +8 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/README.md +23 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/mlkem_native.c +660 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/mlkem_native.h +538 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/mlkem_native_asm.S +681 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/mlkem_native_config.h +709 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/cbmc.h +174 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/common.h +274 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/compress.c +717 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/compress.h +688 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/debug.c +64 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/debug.h +128 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/fips202.c +251 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/fips202.h +158 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/fips202x4.c +208 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/fips202x4.h +80 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/keccakf1600.c +463 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/keccakf1600.h +98 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/aarch64/auto.h +70 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/aarch64/src/fips202_native_aarch64.h +69 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/aarch64/src/keccak_f1600_x1_scalar_asm.S +375 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/aarch64/src/keccak_f1600_x1_v84a_asm.S +203 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/aarch64/src/keccak_f1600_x2_v84a_asm.S +258 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/aarch64/src/keccak_f1600_x4_v8a_scalar_hybrid_asm.S +1076 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/aarch64/src/keccak_f1600_x4_v8a_v84a_scalar_hybrid_asm.S +986 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/aarch64/src/keccakf1600_round_constants.c +46 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/aarch64/x1_scalar.h +25 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/aarch64/x1_v84a.h +34 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/aarch64/x2_v84a.h +35 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/aarch64/x4_v8a_scalar.h +26 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/aarch64/x4_v8a_v84a_scalar.h +35 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/api.h +117 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/armv81m/README.md +10 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/armv81m/mve.h +79 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/armv81m/src/fips202_native_armv81m.h +35 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/armv81m/src/keccak_f1600_x4_mve.S +667 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/armv81m/src/keccak_f1600_x4_mve.c +40 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/armv81m/src/keccakf1600_round_constants.c +51 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/armv81m/src/state_extract_bytes_x4_mve.S +290 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/armv81m/src/state_xor_bytes_x4_mve.S +314 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/auto.h +28 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/x86_64/keccak_f1600_x4_avx2.h +33 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/x86_64/src/fips202_native_x86_64.h +41 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/x86_64/src/keccak_f1600_x4_avx2.S +451 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/fips202/native/x86_64/src/keccakf1600_constants.c +51 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/indcpa.c +622 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/indcpa.h +156 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/kem.c +446 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/kem.h +326 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/aarch64/README.md +16 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/aarch64/meta.h +122 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/aarch64/src/aarch64_zetas.c +174 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/aarch64/src/arith_native_aarch64.h +177 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/aarch64/src/intt.S +628 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/aarch64/src/ntt.S +562 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/aarch64/src/poly_mulcache_compute_asm.S +127 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/aarch64/src/poly_reduce_asm.S +150 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/aarch64/src/poly_tobytes_asm.S +117 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/aarch64/src/poly_tomont_asm.S +98 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/aarch64/src/polyvec_basemul_acc_montgomery_cached_asm_k2.S +261 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/aarch64/src/polyvec_basemul_acc_montgomery_cached_asm_k3.S +314 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/aarch64/src/polyvec_basemul_acc_montgomery_cached_asm_k4.S +368 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/aarch64/src/rej_uniform_asm.S +226 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/aarch64/src/rej_uniform_table.c +542 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/api.h +637 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/meta.h +25 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/riscv64/README.md +11 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/riscv64/meta.h +128 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/riscv64/src/arith_native_riscv64.h +45 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/riscv64/src/rv64v_debug.c +81 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/riscv64/src/rv64v_debug.h +145 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/riscv64/src/rv64v_izetas.inc +27 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/riscv64/src/rv64v_poly.c +805 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/riscv64/src/rv64v_zetas.inc +27 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/riscv64/src/rv64v_zetas_basemul.inc +39 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/README.md +4 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/meta.h +304 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/arith_native_x86_64.h +309 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/compress_consts.c +94 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/compress_consts.h +45 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/consts.c +102 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/consts.h +25 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/intt.S +719 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/mulcache_compute.S +90 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/ntt.S +639 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/nttfrombytes.S +193 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/ntttobytes.S +181 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/nttunpack.S +174 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/poly_compress_d10.S +382 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/poly_compress_d11.S +448 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/poly_compress_d4.S +163 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/poly_compress_d5.S +220 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/poly_decompress_d10.S +228 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/poly_decompress_d11.S +277 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/poly_decompress_d4.S +180 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/poly_decompress_d5.S +192 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/polyvec_basemul_acc_montgomery_cached_asm_k2.S +502 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/polyvec_basemul_acc_montgomery_cached_asm_k3.S +750 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/polyvec_basemul_acc_montgomery_cached_asm_k4.S +998 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/reduce.S +218 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/rej_uniform_asm.S +103 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/rej_uniform_table.c +544 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/native/x86_64/src/tomont.S +155 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/params.h +76 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/poly.c +572 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/poly.h +317 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/poly_k.c +502 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/poly_k.h +668 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/randombytes.h +60 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/sampling.c +362 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/sampling.h +118 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/symmetric.h +70 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/sys.h +260 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/verify.c +20 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/verify.h +464 -0
- data/ext/pqcrypto/vendor/mlkem-native/mlkem/src/zetas.inc +30 -0
- data/lib/pq_crypto/hybrid_kem.rb +10 -1
- data/lib/pq_crypto/version.rb +1 -1
- data/lib/pq_crypto.rb +5 -1
- data/script/vendor_libs.rb +228 -154
- metadata +236 -160
- data/ext/pqcrypto/vendor/pqclean/common/aes.c +0 -639
- data/ext/pqcrypto/vendor/pqclean/common/aes.h +0 -64
- data/ext/pqcrypto/vendor/pqclean/common/compat.h +0 -73
- data/ext/pqcrypto/vendor/pqclean/common/crypto_declassify.h +0 -7
- data/ext/pqcrypto/vendor/pqclean/common/fips202.c +0 -928
- data/ext/pqcrypto/vendor/pqclean/common/fips202.h +0 -166
- data/ext/pqcrypto/vendor/pqclean/common/keccak2x/feat.S +0 -168
- data/ext/pqcrypto/vendor/pqclean/common/keccak2x/fips202x2.c +0 -684
- data/ext/pqcrypto/vendor/pqclean/common/keccak2x/fips202x2.h +0 -60
- data/ext/pqcrypto/vendor/pqclean/common/keccak4x/KeccakP-1600-times4-SIMD256.c +0 -1028
- data/ext/pqcrypto/vendor/pqclean/common/keccak4x/KeccakP-1600-times4-SnP.h +0 -50
- data/ext/pqcrypto/vendor/pqclean/common/keccak4x/KeccakP-1600-unrolling.macros +0 -198
- data/ext/pqcrypto/vendor/pqclean/common/keccak4x/Makefile +0 -8
- data/ext/pqcrypto/vendor/pqclean/common/keccak4x/Makefile.Microsoft_nmake +0 -8
- data/ext/pqcrypto/vendor/pqclean/common/keccak4x/SIMD256-config.h +0 -3
- data/ext/pqcrypto/vendor/pqclean/common/keccak4x/align.h +0 -34
- data/ext/pqcrypto/vendor/pqclean/common/keccak4x/brg_endian.h +0 -142
- data/ext/pqcrypto/vendor/pqclean/common/nistseedexpander.c +0 -101
- data/ext/pqcrypto/vendor/pqclean/common/nistseedexpander.h +0 -39
- data/ext/pqcrypto/vendor/pqclean/common/randombytes.c +0 -355
- data/ext/pqcrypto/vendor/pqclean/common/randombytes.h +0 -27
- data/ext/pqcrypto/vendor/pqclean/common/sha2.c +0 -769
- data/ext/pqcrypto/vendor/pqclean/common/sha2.h +0 -173
- data/ext/pqcrypto/vendor/pqclean/common/sp800-185.c +0 -156
- data/ext/pqcrypto/vendor/pqclean/common/sp800-185.h +0 -27
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/LICENSE +0 -5
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/Makefile +0 -19
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/Makefile.Microsoft_nmake +0 -23
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/api.h +0 -18
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/cbd.c +0 -83
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/cbd.h +0 -11
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/indcpa.c +0 -327
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/indcpa.h +0 -22
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/kem.c +0 -164
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/kem.h +0 -23
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/ntt.c +0 -146
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/ntt.h +0 -14
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/params.h +0 -36
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/poly.c +0 -311
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/poly.h +0 -37
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/polyvec.c +0 -198
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/polyvec.h +0 -26
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/reduce.c +0 -41
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/reduce.h +0 -13
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/symmetric-shake.c +0 -71
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/symmetric.h +0 -30
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/verify.c +0 -67
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-1024/clean/verify.h +0 -13
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/LICENSE +0 -5
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/Makefile +0 -19
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/Makefile.Microsoft_nmake +0 -23
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/api.h +0 -18
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/cbd.c +0 -108
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/cbd.h +0 -11
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/indcpa.c +0 -327
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/indcpa.h +0 -22
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/kem.c +0 -164
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/kem.h +0 -23
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/ntt.c +0 -146
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/ntt.h +0 -14
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/params.h +0 -36
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/poly.c +0 -299
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/poly.h +0 -37
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/polyvec.c +0 -188
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/polyvec.h +0 -26
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/reduce.c +0 -41
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/reduce.h +0 -13
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/symmetric-shake.c +0 -71
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/symmetric.h +0 -30
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/verify.c +0 -67
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-512/clean/verify.h +0 -13
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/LICENSE +0 -5
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/Makefile +0 -19
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/Makefile.Microsoft_nmake +0 -23
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/api.h +0 -18
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/cbd.c +0 -83
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/cbd.h +0 -11
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/indcpa.c +0 -327
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/indcpa.h +0 -22
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/kem.c +0 -164
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/kem.h +0 -23
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/ntt.c +0 -146
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/ntt.h +0 -14
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/params.h +0 -36
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/poly.c +0 -299
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/poly.h +0 -37
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/polyvec.c +0 -188
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/polyvec.h +0 -26
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/reduce.c +0 -41
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/reduce.h +0 -13
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/symmetric-shake.c +0 -71
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/symmetric.h +0 -30
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/verify.c +0 -67
- data/ext/pqcrypto/vendor/pqclean/crypto_kem/ml-kem-768/clean/verify.h +0 -13
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/LICENSE +0 -5
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/Makefile +0 -19
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/Makefile.Microsoft_nmake +0 -23
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/api.h +0 -50
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/ntt.c +0 -98
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/ntt.h +0 -10
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/packing.c +0 -261
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/packing.h +0 -31
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/params.h +0 -44
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/poly.c +0 -848
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/poly.h +0 -52
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/polyvec.c +0 -415
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/polyvec.h +0 -65
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/reduce.c +0 -69
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/reduce.h +0 -17
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/rounding.c +0 -98
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/rounding.h +0 -14
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/sign.c +0 -407
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/sign.h +0 -47
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/symmetric-shake.c +0 -26
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-44/clean/symmetric.h +0 -34
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/LICENSE +0 -5
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/Makefile +0 -19
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/Makefile.Microsoft_nmake +0 -23
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/api.h +0 -50
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/ntt.c +0 -98
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/ntt.h +0 -10
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/packing.c +0 -261
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/packing.h +0 -31
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/params.h +0 -44
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/poly.c +0 -799
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/poly.h +0 -52
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/polyvec.c +0 -415
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/polyvec.h +0 -65
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/reduce.c +0 -69
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/reduce.h +0 -17
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/rounding.c +0 -92
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/rounding.h +0 -14
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/sign.c +0 -407
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/sign.h +0 -47
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/symmetric-shake.c +0 -26
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-65/clean/symmetric.h +0 -34
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/LICENSE +0 -5
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/Makefile +0 -19
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/Makefile.Microsoft_nmake +0 -23
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/api.h +0 -50
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/ntt.c +0 -98
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/ntt.h +0 -10
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/packing.c +0 -261
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/packing.h +0 -31
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/params.h +0 -44
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/poly.c +0 -823
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/poly.h +0 -52
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/polyvec.c +0 -415
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/polyvec.h +0 -65
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/reduce.c +0 -69
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/reduce.h +0 -17
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/rounding.c +0 -92
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/rounding.h +0 -14
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/sign.c +0 -407
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/sign.h +0 -47
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/symmetric-shake.c +0 -26
- data/ext/pqcrypto/vendor/pqclean/crypto_sign/ml-dsa-87/clean/symmetric.h +0 -34
|
@@ -0,0 +1,393 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) The mldsa-native project authors
|
|
3
|
+
* SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT
|
|
4
|
+
*/
|
|
5
|
+
#ifndef MLD_POLY_H
|
|
6
|
+
#define MLD_POLY_H
|
|
7
|
+
|
|
8
|
+
#include "cbmc.h"
|
|
9
|
+
#include "common.h"
|
|
10
|
+
#include "reduce.h"
|
|
11
|
+
#include "rounding.h"
|
|
12
|
+
|
|
13
|
+
/* Absolute exclusive upper bound for the output of the forward NTT */
|
|
14
|
+
#define MLD_NTT_BOUND (9 * MLDSA_Q)
|
|
15
|
+
/* Absolute exclusive upper bound for the output of the inverse NTT*/
|
|
16
|
+
#define MLD_INTT_BOUND MLDSA_Q
|
|
17
|
+
|
|
18
|
+
typedef struct
|
|
19
|
+
{
|
|
20
|
+
int32_t coeffs[MLDSA_N];
|
|
21
|
+
} MLD_ALIGN mld_poly;
|
|
22
|
+
|
|
23
|
+
#define mld_poly_reduce MLD_NAMESPACE(poly_reduce)
|
|
24
|
+
/*************************************************
|
|
25
|
+
* Name: mld_poly_reduce
|
|
26
|
+
*
|
|
27
|
+
* Description: Inplace reduction of all coefficients of polynomial to
|
|
28
|
+
* representative in
|
|
29
|
+
*[-MLD_REDUCE32_RANGE_MAX,MLD_REDUCE32_RANGE_MAX].
|
|
30
|
+
*
|
|
31
|
+
* Arguments: - mld_poly *a: pointer to input/output polynomial
|
|
32
|
+
**************************************************/
|
|
33
|
+
MLD_INTERNAL_API
|
|
34
|
+
void mld_poly_reduce(mld_poly *a)
|
|
35
|
+
__contract__(
|
|
36
|
+
requires(memory_no_alias(a, sizeof(mld_poly)))
|
|
37
|
+
requires(array_bound(a->coeffs, 0, MLDSA_N, INT32_MIN, MLD_REDUCE32_DOMAIN_MAX))
|
|
38
|
+
assigns(memory_slice(a, sizeof(mld_poly)))
|
|
39
|
+
ensures(array_bound(a->coeffs, 0, MLDSA_N, -MLD_REDUCE32_RANGE_MAX, MLD_REDUCE32_RANGE_MAX))
|
|
40
|
+
);
|
|
41
|
+
|
|
42
|
+
#define mld_poly_caddq MLD_NAMESPACE(poly_caddq)
|
|
43
|
+
/*************************************************
|
|
44
|
+
* Name: mld_poly_caddq
|
|
45
|
+
*
|
|
46
|
+
* Description: For all coefficients of in/out polynomial add MLDSA_Q if
|
|
47
|
+
* coefficient is negative.
|
|
48
|
+
*
|
|
49
|
+
* Arguments: - mld_poly *a: pointer to input/output polynomial
|
|
50
|
+
**************************************************/
|
|
51
|
+
MLD_INTERNAL_API
|
|
52
|
+
void mld_poly_caddq(mld_poly *a)
|
|
53
|
+
__contract__(
|
|
54
|
+
requires(memory_no_alias(a, sizeof(mld_poly)))
|
|
55
|
+
requires(array_abs_bound(a->coeffs, 0, MLDSA_N, MLDSA_Q))
|
|
56
|
+
assigns(memory_slice(a, sizeof(mld_poly)))
|
|
57
|
+
ensures(array_bound(a->coeffs, 0, MLDSA_N, 0, MLDSA_Q))
|
|
58
|
+
);
|
|
59
|
+
|
|
60
|
+
#define mld_poly_add MLD_NAMESPACE(poly_add)
|
|
61
|
+
/*************************************************
|
|
62
|
+
* Name: mld_poly_add
|
|
63
|
+
*
|
|
64
|
+
* Description: Add polynomials. No modular reduction is performed.
|
|
65
|
+
*
|
|
66
|
+
* Arguments: - r: Pointer to input-output polynomial to be added to.
|
|
67
|
+
* - b: Pointer to input polynomial that should be added
|
|
68
|
+
* to r. Must be disjoint from r.
|
|
69
|
+
**************************************************/
|
|
70
|
+
|
|
71
|
+
/*
|
|
72
|
+
* NOTE: The reference implementation uses a 3-argument poly_add.
|
|
73
|
+
* We specialize to the accumulator form to avoid reasoning about aliasing.
|
|
74
|
+
*/
|
|
75
|
+
MLD_INTERNAL_API
|
|
76
|
+
void mld_poly_add(mld_poly *r, const mld_poly *b)
|
|
77
|
+
__contract__(
|
|
78
|
+
requires(memory_no_alias(b, sizeof(mld_poly)))
|
|
79
|
+
requires(memory_no_alias(r, sizeof(mld_poly)))
|
|
80
|
+
requires(forall(k0, 0, MLDSA_N, (int64_t) r->coeffs[k0] + b->coeffs[k0] < MLD_REDUCE32_DOMAIN_MAX))
|
|
81
|
+
requires(forall(k1, 0, MLDSA_N, (int64_t) r->coeffs[k1] + b->coeffs[k1] >= INT32_MIN))
|
|
82
|
+
assigns(memory_slice(r, sizeof(mld_poly)))
|
|
83
|
+
ensures(forall(k2, 0, MLDSA_N, r->coeffs[k2] == old(*r).coeffs[k2] + b->coeffs[k2]))
|
|
84
|
+
ensures(forall(k3, 0, MLDSA_N, r->coeffs[k3] < MLD_REDUCE32_DOMAIN_MAX))
|
|
85
|
+
ensures(forall(k4, 0, MLDSA_N, r->coeffs[k4] >= INT32_MIN))
|
|
86
|
+
);
|
|
87
|
+
|
|
88
|
+
#define mld_poly_sub MLD_NAMESPACE(poly_sub)
|
|
89
|
+
/*************************************************
|
|
90
|
+
* Name: mld_poly_sub
|
|
91
|
+
*
|
|
92
|
+
* Description: Subtract polynomials. No modular reduction is
|
|
93
|
+
* performed.
|
|
94
|
+
*
|
|
95
|
+
* Arguments: - mld_poly *r: Pointer to input-output polynomial.
|
|
96
|
+
* - const mld_poly *b: Pointer to input polynomial that should be
|
|
97
|
+
* subtracted from r. Must be disjoint from r.
|
|
98
|
+
**************************************************/
|
|
99
|
+
/*
|
|
100
|
+
* NOTE: The reference implementation uses a 3-argument poly_sub.
|
|
101
|
+
* We specialize to the accumulator form to avoid reasoning about aliasing.
|
|
102
|
+
*/
|
|
103
|
+
MLD_INTERNAL_API
|
|
104
|
+
void mld_poly_sub(mld_poly *r, const mld_poly *b)
|
|
105
|
+
__contract__(
|
|
106
|
+
requires(memory_no_alias(b, sizeof(mld_poly)))
|
|
107
|
+
requires(memory_no_alias(r, sizeof(mld_poly)))
|
|
108
|
+
requires(array_abs_bound(r->coeffs, 0, MLDSA_N, MLDSA_Q))
|
|
109
|
+
requires(array_abs_bound(b->coeffs, 0, MLDSA_N, MLDSA_Q))
|
|
110
|
+
assigns(memory_slice(r, sizeof(mld_poly)))
|
|
111
|
+
ensures(array_bound(r->coeffs, 0, MLDSA_N, INT32_MIN, MLD_REDUCE32_DOMAIN_MAX))
|
|
112
|
+
);
|
|
113
|
+
|
|
114
|
+
#define mld_poly_shiftl MLD_NAMESPACE(poly_shiftl)
|
|
115
|
+
/*************************************************
|
|
116
|
+
* Name: mld_poly_shiftl
|
|
117
|
+
*
|
|
118
|
+
* Description: Multiply polynomial by 2^MLDSA_D without modular reduction.
|
|
119
|
+
*Assumes input coefficients to be less than 2^{31-MLDSA_D} in absolute value.
|
|
120
|
+
*
|
|
121
|
+
* Arguments: - mld_poly *a: pointer to input/output polynomial
|
|
122
|
+
**************************************************/
|
|
123
|
+
MLD_INTERNAL_API
|
|
124
|
+
void mld_poly_shiftl(mld_poly *a)
|
|
125
|
+
__contract__(
|
|
126
|
+
requires(memory_no_alias(a, sizeof(mld_poly)))
|
|
127
|
+
requires(array_bound(a->coeffs, 0, MLDSA_N, 0, 1 << 10))
|
|
128
|
+
assigns(memory_slice(a, sizeof(mld_poly)))
|
|
129
|
+
ensures(array_bound(a->coeffs, 0, MLDSA_N, 0, MLDSA_Q))
|
|
130
|
+
);
|
|
131
|
+
|
|
132
|
+
#define mld_poly_ntt MLD_NAMESPACE(poly_ntt)
|
|
133
|
+
/*************************************************
|
|
134
|
+
* Name: mld_poly_ntt
|
|
135
|
+
*
|
|
136
|
+
* Description: Inplace forward NTT. Coefficients can grow by
|
|
137
|
+
* 8*MLDSA_Q in absolute value.
|
|
138
|
+
*
|
|
139
|
+
* Arguments: - mld_poly *a: pointer to input/output polynomial
|
|
140
|
+
**************************************************/
|
|
141
|
+
MLD_INTERNAL_API
|
|
142
|
+
void mld_poly_ntt(mld_poly *a)
|
|
143
|
+
__contract__(
|
|
144
|
+
requires(memory_no_alias(a, sizeof(mld_poly)))
|
|
145
|
+
requires(array_abs_bound(a->coeffs, 0, MLDSA_N, MLDSA_Q))
|
|
146
|
+
assigns(memory_slice(a, sizeof(mld_poly)))
|
|
147
|
+
ensures(array_abs_bound(a->coeffs, 0, MLDSA_N, MLD_NTT_BOUND))
|
|
148
|
+
);
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
#define mld_poly_invntt_tomont MLD_NAMESPACE(poly_invntt_tomont)
|
|
152
|
+
/*************************************************
|
|
153
|
+
* Name: mld_poly_invntt_tomont
|
|
154
|
+
*
|
|
155
|
+
* Description: Inplace inverse NTT and multiplication by 2^{32}.
|
|
156
|
+
* Input coefficients need to be less than MLDSA_Q in absolute
|
|
157
|
+
* value and output coefficients are bounded by
|
|
158
|
+
* MLD_INTT_BOUND.
|
|
159
|
+
*
|
|
160
|
+
* Arguments: - mld_poly *a: pointer to input/output polynomial
|
|
161
|
+
**************************************************/
|
|
162
|
+
MLD_INTERNAL_API
|
|
163
|
+
void mld_poly_invntt_tomont(mld_poly *a)
|
|
164
|
+
__contract__(
|
|
165
|
+
requires(memory_no_alias(a, sizeof(mld_poly)))
|
|
166
|
+
requires(array_abs_bound(a->coeffs, 0, MLDSA_N, MLDSA_Q))
|
|
167
|
+
assigns(memory_slice(a, sizeof(mld_poly)))
|
|
168
|
+
ensures(array_abs_bound(a->coeffs, 0, MLDSA_N, MLD_INTT_BOUND))
|
|
169
|
+
);
|
|
170
|
+
|
|
171
|
+
#define mld_poly_pointwise_montgomery MLD_NAMESPACE(poly_pointwise_montgomery)
|
|
172
|
+
/*************************************************
|
|
173
|
+
* Name: mld_poly_pointwise_montgomery
|
|
174
|
+
*
|
|
175
|
+
* Description: Pointwise multiplication of polynomials in NTT domain
|
|
176
|
+
* representation and multiplication of resulting polynomial
|
|
177
|
+
* by 2^{-32}.
|
|
178
|
+
*
|
|
179
|
+
* Arguments: - mld_poly *c: pointer to output polynomial
|
|
180
|
+
* - const mld_poly *a: pointer to first input polynomial
|
|
181
|
+
* - const mld_poly *b: pointer to second input polynomial
|
|
182
|
+
**************************************************/
|
|
183
|
+
MLD_INTERNAL_API
|
|
184
|
+
void mld_poly_pointwise_montgomery(mld_poly *c, const mld_poly *a,
|
|
185
|
+
const mld_poly *b)
|
|
186
|
+
__contract__(
|
|
187
|
+
requires(memory_no_alias(a, sizeof(mld_poly)))
|
|
188
|
+
requires(memory_no_alias(b, sizeof(mld_poly)))
|
|
189
|
+
requires(memory_no_alias(c, sizeof(mld_poly)))
|
|
190
|
+
requires(array_abs_bound(a->coeffs, 0, MLDSA_N, MLD_NTT_BOUND))
|
|
191
|
+
requires(array_abs_bound(b->coeffs, 0, MLDSA_N, MLD_NTT_BOUND))
|
|
192
|
+
assigns(memory_slice(c, sizeof(mld_poly)))
|
|
193
|
+
ensures(array_abs_bound(c->coeffs, 0, MLDSA_N, MLDSA_Q))
|
|
194
|
+
);
|
|
195
|
+
|
|
196
|
+
#define mld_poly_power2round MLD_NAMESPACE(poly_power2round)
|
|
197
|
+
/*************************************************
|
|
198
|
+
* Name: mld_poly_power2round
|
|
199
|
+
*
|
|
200
|
+
* Description: For all coefficients c of the input polynomial,
|
|
201
|
+
* compute c0, c1 such that c mod MLDSA_Q = c1*2^MLDSA_D + c0
|
|
202
|
+
* with -2^{MLDSA_D-1} < c0 <= 2^{MLDSA_D-1}. Assumes coefficients
|
|
203
|
+
*to be standard representatives.
|
|
204
|
+
*
|
|
205
|
+
* Arguments: - mld_poly *a1: pointer to output polynomial with coefficients
|
|
206
|
+
*c1
|
|
207
|
+
* - mld_poly *a0: pointer to output polynomial with coefficients
|
|
208
|
+
*c0
|
|
209
|
+
* - const mld_poly *a: pointer to input polynomial
|
|
210
|
+
**************************************************/
|
|
211
|
+
MLD_INTERNAL_API
|
|
212
|
+
void mld_poly_power2round(mld_poly *a1, mld_poly *a0, const mld_poly *a)
|
|
213
|
+
__contract__(
|
|
214
|
+
requires(memory_no_alias(a0, sizeof(mld_poly)))
|
|
215
|
+
requires(memory_no_alias(a1, sizeof(mld_poly)))
|
|
216
|
+
requires(memory_no_alias(a, sizeof(mld_poly)))
|
|
217
|
+
requires(array_bound(a->coeffs, 0, MLDSA_N, 0, MLDSA_Q))
|
|
218
|
+
assigns(memory_slice(a1, sizeof(mld_poly)))
|
|
219
|
+
assigns(memory_slice(a0, sizeof(mld_poly)))
|
|
220
|
+
ensures(array_bound(a0->coeffs, 0, MLDSA_N, -(MLD_2_POW_D/2)+1, (MLD_2_POW_D/2)+1))
|
|
221
|
+
ensures(array_bound(a1->coeffs, 0, MLDSA_N, 0, ((MLDSA_Q - 1) / MLD_2_POW_D) + 1))
|
|
222
|
+
);
|
|
223
|
+
|
|
224
|
+
#define mld_poly_uniform MLD_NAMESPACE(poly_uniform)
|
|
225
|
+
/*************************************************
|
|
226
|
+
* Name: mld_poly_uniform
|
|
227
|
+
*
|
|
228
|
+
* Description: Sample polynomial with uniformly random coefficients
|
|
229
|
+
* in [0,MLDSA_Q-1] by performing rejection sampling on the
|
|
230
|
+
* output stream of SHAKE128(seed|nonce)
|
|
231
|
+
*
|
|
232
|
+
* Arguments: - mld_poly *a: pointer to output polynomial
|
|
233
|
+
* - const uint8_t seed[]: byte array with seed of length
|
|
234
|
+
* MLDSA_SEEDBYTES and the packed 2-byte nonce
|
|
235
|
+
**************************************************/
|
|
236
|
+
MLD_INTERNAL_API
|
|
237
|
+
void mld_poly_uniform(mld_poly *a, const uint8_t seed[MLDSA_SEEDBYTES + 2])
|
|
238
|
+
__contract__(
|
|
239
|
+
requires(memory_no_alias(a, sizeof(mld_poly)))
|
|
240
|
+
requires(memory_no_alias(seed, MLDSA_SEEDBYTES + 2))
|
|
241
|
+
assigns(memory_slice(a, sizeof(mld_poly)))
|
|
242
|
+
ensures(array_bound(a->coeffs, 0, MLDSA_N, 0, MLDSA_Q))
|
|
243
|
+
);
|
|
244
|
+
|
|
245
|
+
#if !defined(MLD_CONFIG_SERIAL_FIPS202_ONLY) && !defined(MLD_CONFIG_REDUCE_RAM)
|
|
246
|
+
#define mld_poly_uniform_4x MLD_NAMESPACE(poly_uniform_4x)
|
|
247
|
+
/*************************************************
|
|
248
|
+
* Name: mld_poly_uniform_x4
|
|
249
|
+
*
|
|
250
|
+
* Description: Generate four polynomials using rejection sampling
|
|
251
|
+
* on (pseudo-)uniformly random bytes sampled from a seed.
|
|
252
|
+
*
|
|
253
|
+
* Arguments: - mld_poly *vec0, *vec1, *vec2, *vec3:
|
|
254
|
+
* Pointers to 4 polynomials to be sampled.
|
|
255
|
+
* - uint8_t seed[4][MLD_ALIGN_UP(MLDSA_SEEDBYTES + 2)]:
|
|
256
|
+
* Pointer consecutive array of seed buffers of size
|
|
257
|
+
* MLDSA_SEEDBYTES + 2 each, plus padding for alignment.
|
|
258
|
+
*
|
|
259
|
+
**************************************************/
|
|
260
|
+
MLD_INTERNAL_API
|
|
261
|
+
void mld_poly_uniform_4x(mld_poly *vec0, mld_poly *vec1, mld_poly *vec2,
|
|
262
|
+
mld_poly *vec3,
|
|
263
|
+
uint8_t seed[4][MLD_ALIGN_UP(MLDSA_SEEDBYTES + 2)])
|
|
264
|
+
__contract__(
|
|
265
|
+
requires(memory_no_alias(vec0, sizeof(mld_poly)))
|
|
266
|
+
requires(memory_no_alias(vec1, sizeof(mld_poly)))
|
|
267
|
+
requires(memory_no_alias(vec2, sizeof(mld_poly)))
|
|
268
|
+
requires(memory_no_alias(vec3, sizeof(mld_poly)))
|
|
269
|
+
requires(memory_no_alias(seed, 4 * MLD_ALIGN_UP(MLDSA_SEEDBYTES + 2)))
|
|
270
|
+
assigns(memory_slice(vec0, sizeof(mld_poly)))
|
|
271
|
+
assigns(memory_slice(vec1, sizeof(mld_poly)))
|
|
272
|
+
assigns(memory_slice(vec2, sizeof(mld_poly)))
|
|
273
|
+
assigns(memory_slice(vec3, sizeof(mld_poly)))
|
|
274
|
+
ensures(array_bound(vec0->coeffs, 0, MLDSA_N, 0, MLDSA_Q))
|
|
275
|
+
ensures(array_bound(vec1->coeffs, 0, MLDSA_N, 0, MLDSA_Q))
|
|
276
|
+
ensures(array_bound(vec2->coeffs, 0, MLDSA_N, 0, MLDSA_Q))
|
|
277
|
+
ensures(array_bound(vec3->coeffs, 0, MLDSA_N, 0, MLDSA_Q))
|
|
278
|
+
);
|
|
279
|
+
#endif /* !MLD_CONFIG_SERIAL_FIPS202_ONLY && !MLD_CONFIG_REDUCE_RAM */
|
|
280
|
+
|
|
281
|
+
#define mld_polyt1_pack MLD_NAMESPACE(polyt1_pack)
|
|
282
|
+
/*************************************************
|
|
283
|
+
* Name: mld_polyt1_pack
|
|
284
|
+
*
|
|
285
|
+
* Description: Bit-pack polynomial t1 with coefficients fitting in 10 bits.
|
|
286
|
+
* Input coefficients are assumed to be standard representatives.
|
|
287
|
+
*
|
|
288
|
+
* Arguments: - uint8_t *r: pointer to output byte array with at least
|
|
289
|
+
* MLDSA_POLYT1_PACKEDBYTES bytes
|
|
290
|
+
* - const mld_poly *a: pointer to input polynomial
|
|
291
|
+
**************************************************/
|
|
292
|
+
MLD_INTERNAL_API
|
|
293
|
+
void mld_polyt1_pack(uint8_t r[MLDSA_POLYT1_PACKEDBYTES], const mld_poly *a)
|
|
294
|
+
__contract__(
|
|
295
|
+
requires(memory_no_alias(r, MLDSA_POLYT1_PACKEDBYTES))
|
|
296
|
+
requires(memory_no_alias(a, sizeof(mld_poly)))
|
|
297
|
+
requires(array_bound(a->coeffs, 0, MLDSA_N, 0, 1 << 10))
|
|
298
|
+
assigns(memory_slice(r, MLDSA_POLYT1_PACKEDBYTES))
|
|
299
|
+
);
|
|
300
|
+
|
|
301
|
+
#define mld_polyt1_unpack MLD_NAMESPACE(polyt1_unpack)
|
|
302
|
+
/*************************************************
|
|
303
|
+
* Name: mld_polyt1_unpack
|
|
304
|
+
*
|
|
305
|
+
* Description: Unpack polynomial t1 with 10-bit coefficients.
|
|
306
|
+
* Output coefficients are standard representatives.
|
|
307
|
+
*
|
|
308
|
+
* Arguments: - mld_poly *r: pointer to output polynomial
|
|
309
|
+
* - const uint8_t *a: byte array with bit-packed polynomial
|
|
310
|
+
**************************************************/
|
|
311
|
+
MLD_INTERNAL_API
|
|
312
|
+
void mld_polyt1_unpack(mld_poly *r, const uint8_t a[MLDSA_POLYT1_PACKEDBYTES])
|
|
313
|
+
__contract__(
|
|
314
|
+
requires(memory_no_alias(r, sizeof(mld_poly)))
|
|
315
|
+
requires(memory_no_alias(a, MLDSA_POLYT1_PACKEDBYTES))
|
|
316
|
+
assigns(memory_slice(r, sizeof(mld_poly)))
|
|
317
|
+
ensures(array_bound(r->coeffs, 0, MLDSA_N, 0, 1 << 10))
|
|
318
|
+
);
|
|
319
|
+
|
|
320
|
+
#define mld_polyt0_pack MLD_NAMESPACE(polyt0_pack)
|
|
321
|
+
/*************************************************
|
|
322
|
+
* Name: mld_polyt0_pack
|
|
323
|
+
*
|
|
324
|
+
* Description: Bit-pack polynomial t0 with coefficients in ]-2^{MLDSA_D-1},
|
|
325
|
+
* 2^{MLDSA_D-1}].
|
|
326
|
+
*
|
|
327
|
+
* Arguments: - uint8_t *r: pointer to output byte array with at least
|
|
328
|
+
* MLDSA_POLYT0_PACKEDBYTES bytes
|
|
329
|
+
* - const mld_poly *a: pointer to input polynomial
|
|
330
|
+
**************************************************/
|
|
331
|
+
MLD_INTERNAL_API
|
|
332
|
+
void mld_polyt0_pack(uint8_t r[MLDSA_POLYT0_PACKEDBYTES], const mld_poly *a)
|
|
333
|
+
__contract__(
|
|
334
|
+
requires(memory_no_alias(r, MLDSA_POLYT0_PACKEDBYTES))
|
|
335
|
+
requires(memory_no_alias(a, sizeof(mld_poly)))
|
|
336
|
+
requires(array_bound(a->coeffs, 0, MLDSA_N, -(1<<(MLDSA_D-1)) + 1, (1<<(MLDSA_D-1)) + 1))
|
|
337
|
+
assigns(memory_slice(r, MLDSA_POLYT0_PACKEDBYTES))
|
|
338
|
+
);
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
#define mld_polyt0_unpack MLD_NAMESPACE(polyt0_unpack)
|
|
342
|
+
/*************************************************
|
|
343
|
+
* Name: mld_polyt0_unpack
|
|
344
|
+
*
|
|
345
|
+
* Description: Unpack polynomial t0 with coefficients in ]-2^{MLDSA_D-1},
|
|
346
|
+
*2^{MLDSA_D-1}].
|
|
347
|
+
*
|
|
348
|
+
* Arguments: - mld_poly *r: pointer to output polynomial
|
|
349
|
+
* - const uint8_t *a: byte array with bit-packed polynomial
|
|
350
|
+
**************************************************/
|
|
351
|
+
MLD_INTERNAL_API
|
|
352
|
+
void mld_polyt0_unpack(mld_poly *r, const uint8_t a[MLDSA_POLYT0_PACKEDBYTES])
|
|
353
|
+
__contract__(
|
|
354
|
+
requires(memory_no_alias(r, sizeof(mld_poly)))
|
|
355
|
+
requires(memory_no_alias(a, MLDSA_POLYT0_PACKEDBYTES))
|
|
356
|
+
assigns(memory_slice(r, sizeof(mld_poly)))
|
|
357
|
+
ensures(array_bound(r->coeffs, 0, MLDSA_N, -(1<<(MLDSA_D-1)) + 1, (1<<(MLDSA_D-1)) + 1))
|
|
358
|
+
);
|
|
359
|
+
|
|
360
|
+
#define mld_poly_chknorm MLD_NAMESPACE(poly_chknorm)
|
|
361
|
+
/*************************************************
|
|
362
|
+
* Name: mld_poly_chknorm
|
|
363
|
+
*
|
|
364
|
+
* Description: Check infinity norm of polynomial against given bound.
|
|
365
|
+
* Assumes input coefficients were reduced by mld_reduce32().
|
|
366
|
+
*
|
|
367
|
+
* Arguments: - const mld_poly *a: pointer to polynomial
|
|
368
|
+
* - int32_t B: norm bound
|
|
369
|
+
*
|
|
370
|
+
* Returns 0 if norm is strictly smaller than
|
|
371
|
+
* B <= (MLDSA_Q - MLD_REDUCE32_RANGE_MAX) and 0xFFFFFFFF otherwise.
|
|
372
|
+
*
|
|
373
|
+
* Specification: The definition of this FIPS-204 requires signed canonical
|
|
374
|
+
* reduction prior to applying the bounds check.
|
|
375
|
+
* However, `-B < (a mod± MLDSA_Q) < B` is equivalent to
|
|
376
|
+
* `-B < a < B` under the assumption that
|
|
377
|
+
* `B <= MLDSA_Q - MLD_REDUCE32_RANGE_MAX` (cf. the assertion in
|
|
378
|
+
* the code). Hence, the present spec and implementation are
|
|
379
|
+
* correct without reduction.
|
|
380
|
+
*
|
|
381
|
+
**************************************************/
|
|
382
|
+
MLD_INTERNAL_API
|
|
383
|
+
MLD_MUST_CHECK_RETURN_VALUE
|
|
384
|
+
uint32_t mld_poly_chknorm(const mld_poly *a, int32_t B)
|
|
385
|
+
__contract__(
|
|
386
|
+
requires(memory_no_alias(a, sizeof(mld_poly)))
|
|
387
|
+
requires(0 <= B && B <= MLDSA_Q - MLD_REDUCE32_RANGE_MAX)
|
|
388
|
+
requires(array_bound(a->coeffs, 0, MLDSA_N, -MLD_REDUCE32_RANGE_MAX, MLD_REDUCE32_RANGE_MAX))
|
|
389
|
+
ensures(return_value == 0 || return_value == 0xFFFFFFFF)
|
|
390
|
+
ensures((return_value == 0) == array_abs_bound(a->coeffs, 0, MLDSA_N, B))
|
|
391
|
+
);
|
|
392
|
+
|
|
393
|
+
#endif /* !MLD_POLY_H */
|