Home
last modified time | relevance | path

Searched refs:OSSL_FIPS_IND (Results 1 – 4 of 4) sorted by relevance

/freebsd/crypto/openssl/providers/fips/include/fips/
H A Dfipsindicator.h58 } OSSL_FIPS_IND; typedef
65 void ossl_FIPS_IND_init(OSSL_FIPS_IND *ind);
66 void ossl_FIPS_IND_set_approved(OSSL_FIPS_IND *ind);
67 void ossl_FIPS_IND_set_settable(OSSL_FIPS_IND *ind, int id, int enable);
68 int ossl_FIPS_IND_get_settable(const OSSL_FIPS_IND *ind, int id);
69 int ossl_FIPS_IND_on_unapproved(OSSL_FIPS_IND *ind, int id, OSSL_LIB_CTX *libctx,
72 int ossl_FIPS_IND_set_ctx_param(OSSL_FIPS_IND *ind, int id,
74 int ossl_FIPS_IND_get_ctx_param(const OSSL_FIPS_IND *ind,
76 void ossl_FIPS_IND_copy(OSSL_FIPS_IND *dst, const OSSL_FIPS_IND *src);
79 #define OSSL_FIPS_IND_DECLARE OSSL_FIPS_IND indicator;
[all …]
/freebsd/crypto/openssl/providers/fips/
H A Dfipsindicator.c16 void ossl_FIPS_IND_init(OSSL_FIPS_IND *ind) in ossl_FIPS_IND_init()
25 void ossl_FIPS_IND_set_approved(OSSL_FIPS_IND *ind) in ossl_FIPS_IND_set_approved()
30 void ossl_FIPS_IND_copy(OSSL_FIPS_IND *dst, const OSSL_FIPS_IND *src) in ossl_FIPS_IND_copy()
35 void ossl_FIPS_IND_set_settable(OSSL_FIPS_IND *ind, int id, int state) in ossl_FIPS_IND_set_settable()
45 int ossl_FIPS_IND_get_settable(const OSSL_FIPS_IND *ind, int id) in ossl_FIPS_IND_get_settable()
58 int ossl_FIPS_IND_on_unapproved(OSSL_FIPS_IND *ind, int id, in ossl_FIPS_IND_on_unapproved()
80 int ossl_FIPS_IND_set_ctx_param(OSSL_FIPS_IND *ind, int id, in ossl_FIPS_IND_set_ctx_param()
94 int ossl_FIPS_IND_get_ctx_param(const OSSL_FIPS_IND *ind, OSSL_PARAM params[]) in ossl_FIPS_IND_get_ctx_param()
/freebsd/crypto/openssl/providers/common/
H A Dsecuritycheck_fips.c36 int ossl_fips_ind_rsa_key_check(OSSL_FIPS_IND *ind, int id, in ossl_fips_ind_rsa_key_check()
54 int ossl_fips_ind_ec_key_check(OSSL_FIPS_IND *ind, int id, in ossl_fips_ind_ec_key_check()
81 int ossl_fips_ind_digest_exch_check(OSSL_FIPS_IND *ind, int id, in ossl_fips_ind_digest_exch_check()
98 int ossl_fips_ind_digest_sign_check(OSSL_FIPS_IND *ind, int id, in ossl_fips_ind_digest_sign_check()
/freebsd/crypto/openssl/doc/designs/
H A Dfips_indicator.md201 } OSSL_FIPS_IND;
210 OSSL_FIPS_IND should be placed into the algorithm objects struct that is
215 This is used to copy the OSSL_FIPS_IND when calling a dup(). If the dup() uses
220 Initializes the OSSL_FIPS_IND object. It should be called in the new().