Home
last modified time | relevance | path

Searched refs:checktype (Results 1 – 17 of 17) sorted by relevance

/src/crypto/openssl/crypto/evp/
H A Dpmeth_check.c28 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)) in evp_pkey_public_check_combined()
92 static int evp_pkey_param_check_combined(EVP_PKEY_CTX *ctx, int checktype) in evp_pkey_param_check_combined() argument
104 checktype)) in evp_pkey_param_check_combined()
H A Dkeymgmt_meth.c524 int selection, int checktype) in evp_keymgmt_validate() argument
529 return keymgmt->validate(keydata, selection, checktype); in evp_keymgmt_validate()
/src/crypto/openssl/crypto/dsa/
H A Ddsa_check.c45 int ossl_dsa_check_params(const DSA *dsa, int checktype, int *ret) in ossl_dsa_check_params() argument
50 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK) in ossl_dsa_check_params()
/src/contrib/lua/src/
H A Dlobject.h92 #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)
592 #define ttisfunction(o) checktype(o, LUA_TFUNCTION)
/src/sys/contrib/openzfs/module/lua/
H A Dlobject.h130 #define checktype(o,t) (ttypenv(o) == (t)) macro
135 #define ttisstring(o) checktype((o), LUA_TSTRING)
139 #define ttisfunction(o) checktype(o, LUA_TFUNCTION)
362 #undef checktype
364 #define checktype(o,t) (ctb(tt_(o) | VARBITS) == ctb(tag2tt(t) | VARBITS)) macro
/src/crypto/openssl/providers/implementations/keymgmt/
H A Ddsa_kmgmt.c350 static int dsa_validate_domparams(const DSA *dsa, int checktype) in dsa_validate_domparams() argument
354 return ossl_dsa_check_params(dsa, checktype, &status); in dsa_validate_domparams()
379 static int dsa_validate(const void *keydata, int selection, int checktype) in dsa_validate() argument
391 ok = ok && dsa_validate_domparams(dsa, checktype); in dsa_validate()
H A Ddh_kmgmt.c382 static int dh_validate_public(const DH *dh, int checktype) in dh_validate_public() argument
412 static int dh_validate(const void *keydata, int selection, int checktype) in dh_validate() argument
429 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK) in dh_validate()
436 ok = ok && dh_validate_public(dh, checktype); in dh_validate()
H A Decx_kmgmt.c990 static int x25519_validate(const void *keydata, int selection, int checktype) in x25519_validate() argument
995 static int x448_validate(const void *keydata, int selection, int checktype) in x448_validate() argument
1000 static int ed25519_validate(const void *keydata, int selection, int checktype) in ed25519_validate() argument
1005 static int ed448_validate(const void *keydata, int selection, int checktype) in ed448_validate() argument
H A Dec_kmgmt.c871 static int sm2_validate(const void *keydata, int selection, int checktype) in sm2_validate() argument
891 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK) in sm2_validate()
909 static int ec_validate(const void *keydata, int selection, int checktype) in ec_validate() argument
935 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK) in ec_validate()
H A Drsa_kmgmt.c386 static int rsa_validate(const void *keydata, int selection, int checktype) in rsa_validate() argument
/src/crypto/openssl/include/crypto/
H A Ddsa.h47 int ossl_dsa_check_params(const DSA *dsa, int checktype, int *ret);
H A Devp.h851 int selection, int checktype);
/src/contrib/unbound/testcode/
H A Dchecklocks.c356 checktype(enum check_lock_type type, struct checked_lock* lock, in checktype() function
379 checktype(type, e, func, file, line); in checklock_destroy()
473 checktype(type, lock, func, file, line); in checklock_lockit()
626 checktype(type, lock, func, file, line); in checklock_unlock()
/src/contrib/unbound/validator/
H A Dval_neg.c1062 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()
/src/crypto/openssl/doc/man7/
H A Dprovider-keymgmt.pod64 int OSSL_FUNC_keymgmt_validate(const void *keydata, int selection, int checktype);
325 I<keydata> is valid. The I<checktype> parameter controls what type of check is
/src/crypto/openssl/include/openssl/
H A Dcore_dispatch.h674 OSSL_CORE_MAKE_FUNC(int, keymgmt_validate, (const void *keydata, int selection, int checktype))
/src/sys/netipsec/
H A Dkey.c8464 enum { NONE, ADDR } checktype = NONE; in key_validate_ext() local
8490 checktype = ADDR; in key_validate_ext()
8497 checktype = ADDR; in key_validate_ext()
8499 checktype = NONE; in key_validate_ext()
8502 checktype = NONE; in key_validate_ext()
8506 switch (checktype) { in key_validate_ext()