Symbol: ML_DSA_SEED_BYTES
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
773
OPENSSL_clear_free(key->seed, ML_DSA_SEED_BYTES);
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
167
OPENSSL_clear_free(key->seed, ML_DSA_SEED_BYTES);
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
228
ML_DSA_SEED_BYTES))
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
419
uint8_t augmented_seed[ML_DSA_SEED_BYTES + 2];
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
434
memcpy(augmented_seed, out->seed, ML_DSA_SEED_BYTES);
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
435
augmented_seed[ML_DSA_SEED_BYTES] = (uint8_t)params->k;
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
436
augmented_seed[ML_DSA_SEED_BYTES + 1] = (uint8_t)params->l;
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
454
OPENSSL_clear_free(out->seed, ML_DSA_SEED_BYTES);
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
465
size_t seed_len = ML_DSA_SEED_BYTES;
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
47
|| (seed != NULL && seed_len != ML_DSA_SEED_BYTES)
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
465
|| (p8fmt->seed_length > 0 && p8fmt->seed_length != ML_DSA_SEED_BYTES)
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
483
pos += ML_DSA_SEED_BYTES;
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
517
seed, ML_DSA_SEED_BYTES, priv, v->sk_len))
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
555
int len = ML_DSA_SEED_BYTES;
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
584
|| (p8fmt->seed_length > 0 && p8fmt->seed_length != ML_DSA_SEED_BYTES)
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
629
memcpy(pos, seed, ML_DSA_SEED_BYTES);
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
630
pos += ML_DSA_SEED_BYTES;
crypto/openssl/providers/implementations/encode_decode/ml_dsa_codecs.c
696
if (seed != NULL && !ossl_bio_print_labeled_buf(out, "seed:", seed, ML_DSA_SEED_BYTES))
crypto/openssl/providers/implementations/keymgmt/ml_dsa_kmgmt.c
219
if (seed != NULL && seed_len != ML_DSA_SEED_BYTES) {
crypto/openssl/providers/implementations/keymgmt/ml_dsa_kmgmt.c
346
&& !OSSL_PARAM_set_octet_string(p, seed, ML_DSA_SEED_BYTES))
crypto/openssl/providers/implementations/keymgmt/ml_dsa_kmgmt.c
391
params[pnum++] = OSSL_PARAM_construct_octet_string(OSSL_PKEY_PARAM_ML_DSA_SEED, (void *)buf, ML_DSA_SEED_BYTES);
crypto/openssl/test/ml_dsa_test.c
91
uint8_t priv[5 * 1024], pub[3 * 1024], seed[ML_DSA_SEED_BYTES];