Symbol: x448
crypto/libecc/include/libecc/ecdh/x25519_448.h
51
ATTRIBUTE_WARN_UNUSED_RET int x448(const u8 k[X448_SIZE], const u8 u[X448_SIZE], u8 res[X448_SIZE]);
crypto/openssl/crypto/ec/ecx_s390x.c
119
} x448;
crypto/openssl/crypto/ec/ecx_s390x.c
126
memcpy(param.x448.u_src, u_src, 56);
crypto/openssl/crypto/ec/ecx_s390x.c
127
memcpy(param.x448.d_src, d_src, 56);
crypto/openssl/crypto/ec/ecx_s390x.c
129
s390x_flip_endian64(param.x448.u_src, param.x448.u_src);
crypto/openssl/crypto/ec/ecx_s390x.c
130
s390x_x448_mod_p(param.x448.u_src + 8);
crypto/openssl/crypto/ec/ecx_s390x.c
132
s390x_flip_endian64(param.x448.d_src, param.x448.d_src);
crypto/openssl/crypto/ec/ecx_s390x.c
133
param.x448.d_src[63] &= 252;
crypto/openssl/crypto/ec/ecx_s390x.c
134
param.x448.d_src[8] |= 128;
crypto/openssl/crypto/ec/ecx_s390x.c
136
rc = s390x_pcc(S390X_SCALAR_MULTIPLY_X448, &param.x448) ? 0 : 1;
crypto/openssl/crypto/ec/ecx_s390x.c
138
s390x_flip_endian64(param.x448.u_dst, param.x448.u_dst);
crypto/openssl/crypto/ec/ecx_s390x.c
139
memcpy(u_dst, param.x448.u_dst, 56);
crypto/openssl/crypto/ec/ecx_s390x.c
142
OPENSSL_cleanse(param.x448.d_src, sizeof(param.x448.d_src));
crypto/openssl/providers/implementations/encode_decode/decode_der2key.c
1242
MAKE_DECODER("X448", x448, ecx, PrivateKeyInfo);
crypto/openssl/providers/implementations/encode_decode/decode_der2key.c
1243
MAKE_DECODER("X448", x448, ecx, SubjectPublicKeyInfo);
crypto/openssl/providers/implementations/encode_decode/decode_der2key.c
516
D2I_PUBKEY_NOCTX(x448, ossl_d2i_X448_PUBKEY)
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
1579
MAKE_ENCODER(x448, ecx, EncryptedPrivateKeyInfo, der);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
1580
MAKE_ENCODER(x448, ecx, EncryptedPrivateKeyInfo, pem);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
1581
MAKE_ENCODER(x448, ecx, PrivateKeyInfo, der);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
1582
MAKE_ENCODER(x448, ecx, PrivateKeyInfo, pem);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
1583
MAKE_ENCODER(x448, ecx, SubjectPublicKeyInfo, der);
crypto/openssl/providers/implementations/encode_decode/encode_key2any.c
1584
MAKE_ENCODER(x448, ecx, SubjectPublicKeyInfo, pem);
crypto/openssl/providers/implementations/encode_decode/encode_key2text.c
714
MAKE_TEXT_ENCODER(x448, ecx);
crypto/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
1037
MAKE_KEYMGMT_FUNCTIONS(x448)
crypto/openssl/providers/implementations/keymgmt/mlx_kmgmt.c
817
DECLARE_DISPATCH(x448, 3);