Symbol: X25519_KEYLEN
crypto/openssl/crypto/ec/ecx_backend.c
205
privkey[X25519_KEYLEN - 1] &= 127;
crypto/openssl/crypto/ec/ecx_backend.c
206
privkey[X25519_KEYLEN - 1] |= 64;
crypto/openssl/crypto/ec/ecx_backend.h
12
#define KEYLENID(id) (IS25519(id) ? X25519_KEYLEN \
crypto/openssl/crypto/ec/ecx_key.c
120
if (!ossl_assert(keylen == X25519_KEYLEN
crypto/openssl/crypto/ec/ecx_key.c
135
if (keylen == X25519_KEYLEN) {
crypto/openssl/crypto/ec/ecx_key.c
32
ret->keylen = X25519_KEYLEN;
crypto/openssl/crypto/ec/ecx_meth.c
1203
*keylen = X25519_KEYLEN;
crypto/openssl/crypto/ec/ecx_meth.c
759
*keylen = X25519_KEYLEN;
crypto/openssl/crypto/ec/ecx_meth.c
965
if (RAND_priv_bytes_ex(ctx->libctx, privkey, X25519_KEYLEN, 0) <= 0)
crypto/openssl/crypto/hpke/hpke_util.c
74
X25519_KEYLEN, X25519_KEYLEN, X25519_KEYLEN, 0x00 },
crypto/openssl/providers/implementations/exchange/ecx_exch.c
63
return ecx_newctx(provctx, X25519_KEYLEN);
crypto/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
1082
if (RAND_priv_bytes_ex(gctx->libctx, privkey, X25519_KEYLEN, 0) <= 0)
crypto/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
346
X25519_KEYLEN);
crypto/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
733
privkey[X25519_KEYLEN - 1] &= 127;
crypto/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
734
privkey[X25519_KEYLEN - 1] |= 64;
crypto/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
992
return ecx_validate(keydata, selection, ECX_KEY_TYPE_X25519, X25519_KEYLEN);
crypto/openssl/test/evp_pkey_provided_test.c
1427
X25519_KEYLEN),
crypto/openssl/test/evp_pkey_provided_test.c
1430
X25519_KEYLEN),
crypto/openssl/test/evp_pkey_provided_test.c
1469
size = X25519_KEYLEN;