Home
last modified time | relevance | path

Searched refs:EVP_PKEY_cmp (Results 1 – 15 of 15) sorted by relevance

/freebsd/crypto/openssl/doc/man3/
H A DEVP_PKEY_copy_parameters.pod7 EVP_PKEY_cmp - public key parameter and comparison functions
24 int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b);
50 The deprecated functions EVP_PKEY_cmp() and EVP_PKEY_cmp_parameters() differ in
54 The function EVP_PKEY_cmp() previously only checked the key parameters
61 Instead, EVP_PKEY_eq() (and therefore also EVP_PKEY_cmp()) now compares:
94 EVP_PKEY_cmp() and EVP_PKEY_eq() return 1 if their
105 The EVP_PKEY_cmp() and EVP_PKEY_cmp_parameters() functions were deprecated in
109 replace EVP_PKEY_cmp() and EVP_PKEY_cmp_parameters().
/freebsd/contrib/libfido2/regress/
H A Drs256.c140 if ((r = EVP_PKEY_cmp(pkA, pkB)) != 1) { in rs256_pk_cmp()
182 assert(EVP_PKEY_cmp(pkeyA, pkeyB) == 1); in valid_size()
H A Deddsa.c90 if ((r = EVP_PKEY_cmp(pkA, pkB)) != 1) { in eddsa_pk_cmp()
91 warnx("EVP_PKEY_cmp: %d", r); in eddsa_pk_cmp()
140 assert(EVP_PKEY_cmp(pkeyA, pkeyB) == 1); in valid_key()
H A Des256.c120 if ((r = EVP_PKEY_cmp(pkA, pkB)) != 1) { in es256_pk_cmp()
177 assert(EVP_PKEY_cmp(pkeyA, pkeyB) == 1); in valid_curve()
H A Des384.c132 if ((r = EVP_PKEY_cmp(pkA, pkB)) != 1) { in es384_pk_cmp()
191 assert(EVP_PKEY_cmp(pkeyA, pkeyB) == 1); in valid_curve()
/freebsd/crypto/openssh/
H A Dssh-ecdsa.c130 return EVP_PKEY_cmp(a->pkey, b->pkey) == 1; in ssh_ecdsa_equal()
H A Dssh-rsa.c65 return EVP_PKEY_cmp(a->pkey, b->pkey) == 1; in ssh_rsa_equal()
/freebsd/crypto/openssl/crypto/evp/
H A Dp_lib.c354 int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b) in EVP_PKEY_cmp() function
/freebsd/crypto/openssl/include/openssl/
H A Devp.h1467 int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b);
/freebsd/secure/lib/libcrypto/
H A DVersion.map1579 EVP_PKEY_cmp;
/freebsd/contrib/wpa/src/crypto/
H A Dcrypto_openssl.c4127 if (EVP_PKEY_cmp((EVP_PKEY *) key1, (EVP_PKEY *) key2) != 1) in crypto_ec_key_cmp()
/freebsd/crypto/openssl/doc/man7/
H A Dossl-guide-migration.pod1804 EVP_PKEY_cmp(), EVP_PKEY_cmp_parameters()
/freebsd/secure/lib/libcrypto/man/man3/
H A DMakefile2313 MLINKS+= EVP_PKEY_copy_parameters.3 EVP_PKEY_cmp.3
/freebsd/crypto/openssl/util/
H A Dlibcrypto.num193 EVP_PKEY_cmp 197 3_0_0 EXIST::FUNCTION:DEPRECATEDIN_3_0
/freebsd/crypto/openssl/
H A DCHANGES.md3347 * Deprecated `EVP_PKEY_cmp()` and `EVP_PKEY_cmp_parameters()`.