/freebsd/crypto/openssl/crypto/evp/ |
H A D | pmeth_check.c | 28 static int try_provided_check(EVP_PKEY_CTX *ctx, int selection, int checktype) in try_provided_check() argument 44 return evp_keymgmt_validate(keymgmt, keydata, selection, checktype); in try_provided_check() 47 static int evp_pkey_public_check_combined(EVP_PKEY_CTX *ctx, int checktype) in evp_pkey_public_check_combined() argument 58 checktype)) != -1) in evp_pkey_public_check_combined() 91 static int evp_pkey_param_check_combined(EVP_PKEY_CTX *ctx, int checktype) in evp_pkey_param_check_combined() argument 103 checktype)) != -1) in evp_pkey_param_check_combined()
|
H A D | keymgmt_meth.c | 439 int selection, int checktype) in evp_keymgmt_validate() argument 444 return keymgmt->validate(keydata, selection, checktype); in evp_keymgmt_validate()
|
/freebsd/crypto/openssl/crypto/dsa/ |
H A D | dsa_check.c | 45 int ossl_dsa_check_params(const DSA *dsa, int checktype, int *ret) 50 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK) 22 ossl_dsa_check_params(const DSA * dsa,int checktype,int * ret) ossl_dsa_check_params() argument
|
/freebsd/contrib/lua/src/ |
H A D | lobject.h | 92 #define checktype(o,t) (ttype(o) == (t)) macro 193 #define ttisnil(v) checktype((v), LUA_TNIL) 242 #define ttisboolean(o) checktype((o), LUA_TBOOLEAN) 326 #define ttisnumber(o) checktype((o), LUA_TNUMBER) 363 #define ttisstring(o) checktype((o), LUA_TSTRING) 594 #define ttisfunction(o) checktype(o, LUA_TFUNCTION)
|
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lobject.h | 129 #define checktype(o,t) (ttypenv(o) == (t)) macro 134 #define ttisstring(o) checktype((o), LUA_TSTRING) 138 #define ttisfunction(o) checktype(o, LUA_TFUNCTION) 361 #undef checktype 363 #define checktype(o,t) (ctb(tt_(o) | VARBITS) == ctb(tag2tt(t) | VARBITS)) macro
|
/freebsd/crypto/openssl/providers/implementations/keymgmt/ |
H A D | dsa_kmgmt.c | 349 static int dsa_validate_domparams(const DSA *dsa, int checktype) in dsa_validate_domparams() argument 353 return ossl_dsa_check_params(dsa, checktype, &status); in dsa_validate_domparams() 378 static int dsa_validate(const void *keydata, int selection, int checktype) in dsa_validate() argument 390 ok = ok && dsa_validate_domparams(dsa, checktype); in dsa_validate()
|
H A D | dh_kmgmt.c | 381 static int dh_validate_public(const DH *dh, int checktype) in dh_validate_public() argument 391 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK in dh_validate_public() 409 static int dh_validate(const void *keydata, int selection, int checktype) in dh_validate() argument 426 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK) in dh_validate() 433 ok = ok && dh_validate_public(dh, checktype); in dh_validate()
|
H A D | ecx_kmgmt.c | 777 static int x25519_validate(const void *keydata, int selection, int checktype) in x25519_validate() argument 782 static int x448_validate(const void *keydata, int selection, int checktype) in x448_validate() argument 787 static int ed25519_validate(const void *keydata, int selection, int checktype) in ed25519_validate() argument 792 static int ed448_validate(const void *keydata, int selection, int checktype) in ed448_validate() argument
|
H A D | ec_kmgmt.c | 897 int sm2_validate(const void *keydata, int selection, int checktype) in sm2_validate() argument 917 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK) in sm2_validate() 936 int ec_validate(const void *keydata, int selection, int checktype) in ec_validate() argument 963 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK) in ec_validate()
|
H A D | rsa_kmgmt.c | 392 static int rsa_validate(const void *keydata, int selection, int checktype) in rsa_validate() argument
|
/freebsd/crypto/openssl/include/crypto/ |
H A D | dsa.h | 40 int ossl_dsa_check_params(const DSA *dsa, int checktype, int *ret);
|
H A D | evp.h | 829 int selection, int checktype);
|
/freebsd/contrib/unbound/validator/ |
H A D | val_neg.c | 1062 struct regional* region, int checkbit, uint16_t checktype, in grab_nsec() argument 1083 (qtype == LDNS_RR_TYPE_NSEC && nsec_has_type(k, checktype)) || in grab_nsec() 1084 (qtype == LDNS_RR_TYPE_NSEC3 && !nsec3_no_type(k, checktype)) in grab_nsec()
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | provider-keymgmt.pod | 59 int OSSL_FUNC_keymgmt_validate(const void *keydata, int selection, int checktype); 308 I<keydata> is valid. The I<checktype> parameter controls what type of check is
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | core_dispatch.h | 619 int checktype))
|
/freebsd/sys/netipsec/ |
H A D | key.c | 8462 enum { NONE, ADDR } checktype = NONE; in key_validate_ext() local 8488 checktype = ADDR; in key_validate_ext() 8495 checktype = ADDR; in key_validate_ext() 8497 checktype = NONE; in key_validate_ext() 8500 checktype = NONE; in key_validate_ext() 8504 switch (checktype) { in key_validate_ext()
|