/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | engine.h | 60 * internally to control registration of ENGINE implementations, and can be 66 /* ENGINE flags that can be set by ENGINE_set_flags(). */ 73 * these control commands on behalf of the ENGINE using their "cmd_defns" 80 * via "ENGINE_by_id()". When an ENGINE must store state (eg. if 83 * then each attempt to obtain the ENGINE will result in it being copied into 85 * ENGINE_by_id() just increments the existing ENGINE's structural reference 91 * This flag if for an ENGINE that does not want its methods registered as 133 * the same functionality to their own ENGINE-specific control functions that 137 * without requiring per-ENGINE hacking. 168 * commands, including ENGINE [all...] |
/third_party/openssl/include/openssl/ |
H A D | engine.h | 60 * internally to control registration of ENGINE implementations, and can be 66 /* ENGINE flags that can be set by ENGINE_set_flags(). */ 73 * these control commands on behalf of the ENGINE using their "cmd_defns" 80 * via "ENGINE_by_id()". When an ENGINE must store state (eg. if 83 * then each attempt to obtain the ENGINE will result in it being copied into 85 * ENGINE_by_id() just increments the existing ENGINE's structural reference 91 * This flag if for an ENGINE that does not want its methods registered as 133 * the same functionality to their own ENGINE-specific control functions that 137 * without requiring per-ENGINE hacking. 168 * commands, including ENGINE [all...] |
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | engine.h | 54 * internally to control registration of ENGINE implementations, and can be 60 /* ENGINE flags that can be set by ENGINE_set_flags(). */ 67 * these control commands on behalf of the ENGINE using their "cmd_defns" 74 * via "ENGINE_by_id()". When an ENGINE must store state (eg. if 77 * then each attempt to obtain the ENGINE will result in it being copied into 79 * ENGINE_by_id() just increments the existing ENGINE's structural reference 85 * This flag if for an ENGINE that does not want its methods registered as 127 * the same functionality to their own ENGINE-specific control functions that 131 * without requiring per-ENGINE hacking. 162 * commands, including ENGINE [all...] |
/third_party/node/deps/openssl/openssl/crypto/engine/ |
H A D | eng_list.c | 21 * itself). In the same way, the use of the "prev" pointer in each ENGINE is 27 static ENGINE *engine_list_head = NULL; 28 static ENGINE *engine_list_tail = NULL; 33 static ENGINE *engine_dyn_list_head = NULL; 34 static ENGINE *engine_dyn_list_tail = NULL; 44 ENGINE *iterator = engine_list_head; in engine_list_cleanup() 57 static int engine_list_add(ENGINE *e) in engine_list_add() 60 ENGINE *iterator = NULL; in engine_list_add() 110 static int engine_list_remove(ENGINE *e) in engine_list_remove() 112 ENGINE *iterato in engine_list_remove() [all...] |
H A D | eng_lib.c | 27 ENGINE *ENGINE_new(void) in ENGINE_new() 29 ENGINE *ret; in ENGINE_new() 47 * elements of the ENGINE structure are more likely to be caught and changed 50 void engine_set_all_null(ENGINE *e) in engine_set_all_null() 71 int engine_free_util(ENGINE *e, int not_locked) in engine_free_util() 89 * Give the ENGINE a chance to do any structural cleanup corresponding to in engine_free_util() 100 int ENGINE_free(ENGINE *e) in ENGINE_free() 186 int ENGINE_set_ex_data(ENGINE *e, int idx, void *arg) in ENGINE_set_ex_data() 191 void *ENGINE_get_ex_data(const ENGINE *e, int idx) in ENGINE_get_ex_data() 197 * Functions to get/set an ENGINE' [all...] |
H A D | eng_local.h | 53 DEFINE_STACK_OF(ENGINE) 61 ENGINE *e, const int *nids, int num_nids, 63 void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e); 65 ENGINE *ossl_engine_table_select(ENGINE_TABLE **table, int nid, 67 typedef void (engine_table_doall_cb) (int nid, STACK_OF(ENGINE) *sk, 68 ENGINE *def, void *arg); 77 int engine_unlocked_init(ENGINE *e); 78 int engine_unlocked_finish(ENGINE *e, int unlock_for_handlers); 79 int engine_free_util(ENGINE *e, int not_locked); 82 * This function will reset all "set"able values in an ENGINE t [all...] |
H A D | tb_asnmth.c | 28 void ENGINE_unregister_pkey_asn1_meths(ENGINE *e) in ENGINE_unregister_pkey_asn1_meths() 38 int ENGINE_register_pkey_asn1_meths(ENGINE *e) in ENGINE_register_pkey_asn1_meths() 53 ENGINE *e; in ENGINE_register_all_pkey_asn1_meths() 59 int ENGINE_set_default_pkey_asn1_meths(ENGINE *e) in ENGINE_set_default_pkey_asn1_meths() 77 ENGINE *ENGINE_get_pkey_asn1_meth_engine(int nid) in ENGINE_get_pkey_asn1_meth_engine() 84 * Obtains a pkey_asn1_meth implementation from an ENGINE functional 87 const EVP_PKEY_ASN1_METHOD *ENGINE_get_pkey_asn1_meth(ENGINE *e, int nid) in ENGINE_get_pkey_asn1_meth() 98 /* Gets the pkey_asn1_meth callback from an ENGINE structure */ 99 ENGINE_PKEY_ASN1_METHS_PTR ENGINE_get_pkey_asn1_meths(const ENGINE *e) in ENGINE_get_pkey_asn1_meths() 104 /* Sets the pkey_asn1_meth callback in an ENGINE structur [all...] |
H A D | tb_pkmeth.c | 18 void ENGINE_unregister_pkey_meths(ENGINE *e) in ENGINE_unregister_pkey_meths() 28 int ENGINE_register_pkey_meths(ENGINE *e) in ENGINE_register_pkey_meths() 43 ENGINE *e; in ENGINE_register_all_pkey_meths() 49 int ENGINE_set_default_pkey_meths(ENGINE *e) in ENGINE_set_default_pkey_meths() 67 ENGINE *ENGINE_get_pkey_meth_engine(int nid) in ENGINE_get_pkey_meth_engine() 73 /* Obtains a pkey_meth implementation from an ENGINE functional reference */ 74 const EVP_PKEY_METHOD *ENGINE_get_pkey_meth(ENGINE *e, int nid) in ENGINE_get_pkey_meth() 85 /* Gets the pkey_meth callback from an ENGINE structure */ 86 ENGINE_PKEY_METHS_PTR ENGINE_get_pkey_meths(const ENGINE *e) in ENGINE_get_pkey_meths() 91 /* Sets the pkey_meth callback in an ENGINE structur [all...] |
H A D | tb_digest.c | 17 void ENGINE_unregister_digests(ENGINE *e) in ENGINE_unregister_digests() 27 int ENGINE_register_digests(ENGINE *e) in ENGINE_register_digests() 42 ENGINE *e; in ENGINE_register_all_digests() 48 int ENGINE_set_default_digests(ENGINE *e) in ENGINE_set_default_digests() 66 ENGINE *ENGINE_get_digest_engine(int nid) in ENGINE_get_digest_engine() 72 /* Obtains a digest implementation from an ENGINE functional reference */ 73 const EVP_MD *ENGINE_get_digest(ENGINE *e, int nid) in ENGINE_get_digest() 84 /* Gets the digest callback from an ENGINE structure */ 85 ENGINE_DIGESTS_PTR ENGINE_get_digests(const ENGINE *e) in ENGINE_get_digests() 90 /* Sets the digest callback in an ENGINE structur [all...] |
H A D | tb_cipher.c | 17 void ENGINE_unregister_ciphers(ENGINE *e) in ENGINE_unregister_ciphers() 27 int ENGINE_register_ciphers(ENGINE *e) in ENGINE_register_ciphers() 42 ENGINE *e; in ENGINE_register_all_ciphers() 48 int ENGINE_set_default_ciphers(ENGINE *e) in ENGINE_set_default_ciphers() 66 ENGINE *ENGINE_get_cipher_engine(int nid) in ENGINE_get_cipher_engine() 72 /* Obtains a cipher implementation from an ENGINE functional reference */ 73 const EVP_CIPHER *ENGINE_get_cipher(ENGINE *e, int nid) in ENGINE_get_cipher() 84 /* Gets the cipher callback from an ENGINE structure */ 85 ENGINE_CIPHERS_PTR ENGINE_get_ciphers(const ENGINE *e) in ENGINE_get_ciphers() 90 /* Sets the cipher callback in an ENGINE structur [all...] |
H A D | tb_rand.c | 18 void ENGINE_unregister_RAND(ENGINE *e) in ENGINE_unregister_RAND() 28 int ENGINE_register_RAND(ENGINE *e) in ENGINE_register_RAND() 39 ENGINE *e; in ENGINE_register_all_RAND() 45 int ENGINE_set_default_RAND(ENGINE *e) in ENGINE_set_default_RAND() 59 ENGINE *ENGINE_get_default_RAND(void) in ENGINE_get_default_RAND() 65 /* Obtains an RAND implementation from an ENGINE functional reference */ 66 const RAND_METHOD *ENGINE_get_RAND(const ENGINE *e) in ENGINE_get_RAND() 71 /* Sets an RAND implementation in an ENGINE structure */ 72 int ENGINE_set_RAND(ENGINE *e, const RAND_METHOD *rand_meth) in ENGINE_set_RAND()
|
H A D | tb_eckey.c | 18 void ENGINE_unregister_EC(ENGINE *e) in ENGINE_unregister_EC() 28 int ENGINE_register_EC(ENGINE *e) in ENGINE_register_EC() 39 ENGINE *e; in ENGINE_register_all_EC() 45 int ENGINE_set_default_EC(ENGINE *e) in ENGINE_set_default_EC() 59 ENGINE *ENGINE_get_default_EC(void) in ENGINE_get_default_EC() 65 /* Obtains an EC_KEY implementation from an ENGINE functional reference */ 66 const EC_KEY_METHOD *ENGINE_get_EC(const ENGINE *e) in ENGINE_get_EC() 71 /* Sets an EC_KEY implementation in an ENGINE structure */ 72 int ENGINE_set_EC(ENGINE *e, const EC_KEY_METHOD *ec_meth) in ENGINE_set_EC()
|
H A D | tb_dsa.c | 18 void ENGINE_unregister_DSA(ENGINE *e) in ENGINE_unregister_DSA() 28 int ENGINE_register_DSA(ENGINE *e) in ENGINE_register_DSA() 39 ENGINE *e; in ENGINE_register_all_DSA() 45 int ENGINE_set_default_DSA(ENGINE *e) in ENGINE_set_default_DSA() 59 ENGINE *ENGINE_get_default_DSA(void) in ENGINE_get_default_DSA() 65 /* Obtains an DSA implementation from an ENGINE functional reference */ 66 const DSA_METHOD *ENGINE_get_DSA(const ENGINE *e) in ENGINE_get_DSA() 71 /* Sets an DSA implementation in an ENGINE structure */ 72 int ENGINE_set_DSA(ENGINE *e, const DSA_METHOD *dsa_meth) in ENGINE_set_DSA()
|
H A D | tb_rsa.c | 18 void ENGINE_unregister_RSA(ENGINE *e) in ENGINE_unregister_RSA() 28 int ENGINE_register_RSA(ENGINE *e) in ENGINE_register_RSA() 39 ENGINE *e; in ENGINE_register_all_RSA() 45 int ENGINE_set_default_RSA(ENGINE *e) in ENGINE_set_default_RSA() 59 ENGINE *ENGINE_get_default_RSA(void) in ENGINE_get_default_RSA() 65 /* Obtains an RSA implementation from an ENGINE functional reference */ 66 const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e) in ENGINE_get_RSA() 71 /* Sets an RSA implementation in an ENGINE structure */ 72 int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth) in ENGINE_set_RSA()
|
H A D | tb_dh.c | 18 void ENGINE_unregister_DH(ENGINE *e) in ENGINE_unregister_DH() 28 int ENGINE_register_DH(ENGINE *e) in ENGINE_register_DH() 39 ENGINE *e; in ENGINE_register_all_DH() 45 int ENGINE_set_default_DH(ENGINE *e) in ENGINE_set_default_DH() 59 ENGINE *ENGINE_get_default_DH(void) in ENGINE_get_default_DH() 65 /* Obtains an DH implementation from an ENGINE functional reference */ 66 const DH_METHOD *ENGINE_get_DH(const ENGINE *e) in ENGINE_get_DH() 71 /* Sets an DH implementation in an ENGINE structure */ 72 int ENGINE_set_DH(ENGINE *e, const DH_METHOD *dh_meth) in ENGINE_set_DH()
|
/third_party/openssl/crypto/engine/ |
H A D | eng_list.c | 21 * itself). In the same way, the use of the "prev" pointer in each ENGINE is 27 static ENGINE *engine_list_head = NULL; 28 static ENGINE *engine_list_tail = NULL; 33 static ENGINE *engine_dyn_list_head = NULL; 34 static ENGINE *engine_dyn_list_tail = NULL; 44 ENGINE *iterator = engine_list_head; in engine_list_cleanup() 57 static int engine_list_add(ENGINE *e) in engine_list_add() 60 ENGINE *iterator = NULL; in engine_list_add() 107 static int engine_list_remove(ENGINE *e) in engine_list_remove() 109 ENGINE *iterato in engine_list_remove() [all...] |
H A D | eng_lib.c | 27 ENGINE *ENGINE_new(void) in ENGINE_new() 29 ENGINE *ret; in ENGINE_new() 47 * elements of the ENGINE structure are more likely to be caught and changed 50 void engine_set_all_null(ENGINE *e) in engine_set_all_null() 71 int engine_free_util(ENGINE *e, int not_locked) in engine_free_util() 89 * Give the ENGINE a chance to do any structural cleanup corresponding to in engine_free_util() 100 int ENGINE_free(ENGINE *e) in ENGINE_free() 180 int ENGINE_set_ex_data(ENGINE *e, int idx, void *arg) in ENGINE_set_ex_data() 185 void *ENGINE_get_ex_data(const ENGINE *e, int idx) in ENGINE_get_ex_data() 191 * Functions to get/set an ENGINE' [all...] |
H A D | eng_local.h | 53 DEFINE_STACK_OF(ENGINE) 61 ENGINE *e, const int *nids, int num_nids, 63 void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e); 65 ENGINE *ossl_engine_table_select(ENGINE_TABLE **table, int nid, 67 typedef void (engine_table_doall_cb) (int nid, STACK_OF(ENGINE) *sk, 68 ENGINE *def, void *arg); 77 int engine_unlocked_init(ENGINE *e); 78 int engine_unlocked_finish(ENGINE *e, int unlock_for_handlers); 79 int engine_free_util(ENGINE *e, int not_locked); 82 * This function will reset all "set"able values in an ENGINE t [all...] |
H A D | tb_asnmth.c | 28 void ENGINE_unregister_pkey_asn1_meths(ENGINE *e) in ENGINE_unregister_pkey_asn1_meths() 38 int ENGINE_register_pkey_asn1_meths(ENGINE *e) in ENGINE_register_pkey_asn1_meths() 53 ENGINE *e; in ENGINE_register_all_pkey_asn1_meths() 59 int ENGINE_set_default_pkey_asn1_meths(ENGINE *e) in ENGINE_set_default_pkey_asn1_meths() 77 ENGINE *ENGINE_get_pkey_asn1_meth_engine(int nid) in ENGINE_get_pkey_asn1_meth_engine() 84 * Obtains a pkey_asn1_meth implementation from an ENGINE functional 87 const EVP_PKEY_ASN1_METHOD *ENGINE_get_pkey_asn1_meth(ENGINE *e, int nid) in ENGINE_get_pkey_asn1_meth() 98 /* Gets the pkey_asn1_meth callback from an ENGINE structure */ 99 ENGINE_PKEY_ASN1_METHS_PTR ENGINE_get_pkey_asn1_meths(const ENGINE *e) in ENGINE_get_pkey_asn1_meths() 104 /* Sets the pkey_asn1_meth callback in an ENGINE structur [all...] |
H A D | tb_pkmeth.c | 18 void ENGINE_unregister_pkey_meths(ENGINE *e) in ENGINE_unregister_pkey_meths() 28 int ENGINE_register_pkey_meths(ENGINE *e) in ENGINE_register_pkey_meths() 43 ENGINE *e; in ENGINE_register_all_pkey_meths() 49 int ENGINE_set_default_pkey_meths(ENGINE *e) in ENGINE_set_default_pkey_meths() 67 ENGINE *ENGINE_get_pkey_meth_engine(int nid) in ENGINE_get_pkey_meth_engine() 73 /* Obtains a pkey_meth implementation from an ENGINE functional reference */ 74 const EVP_PKEY_METHOD *ENGINE_get_pkey_meth(ENGINE *e, int nid) in ENGINE_get_pkey_meth() 85 /* Gets the pkey_meth callback from an ENGINE structure */ 86 ENGINE_PKEY_METHS_PTR ENGINE_get_pkey_meths(const ENGINE *e) in ENGINE_get_pkey_meths() 91 /* Sets the pkey_meth callback in an ENGINE structur [all...] |
H A D | tb_cipher.c | 17 void ENGINE_unregister_ciphers(ENGINE *e) in ENGINE_unregister_ciphers() 27 int ENGINE_register_ciphers(ENGINE *e) in ENGINE_register_ciphers() 42 ENGINE *e; in ENGINE_register_all_ciphers() 48 int ENGINE_set_default_ciphers(ENGINE *e) in ENGINE_set_default_ciphers() 66 ENGINE *ENGINE_get_cipher_engine(int nid) in ENGINE_get_cipher_engine() 72 /* Obtains a cipher implementation from an ENGINE functional reference */ 73 const EVP_CIPHER *ENGINE_get_cipher(ENGINE *e, int nid) in ENGINE_get_cipher() 84 /* Gets the cipher callback from an ENGINE structure */ 85 ENGINE_CIPHERS_PTR ENGINE_get_ciphers(const ENGINE *e) in ENGINE_get_ciphers() 90 /* Sets the cipher callback in an ENGINE structur [all...] |
H A D | tb_digest.c | 17 void ENGINE_unregister_digests(ENGINE *e) in ENGINE_unregister_digests() 27 int ENGINE_register_digests(ENGINE *e) in ENGINE_register_digests() 42 ENGINE *e; in ENGINE_register_all_digests() 48 int ENGINE_set_default_digests(ENGINE *e) in ENGINE_set_default_digests() 66 ENGINE *ENGINE_get_digest_engine(int nid) in ENGINE_get_digest_engine() 72 /* Obtains a digest implementation from an ENGINE functional reference */ 73 const EVP_MD *ENGINE_get_digest(ENGINE *e, int nid) in ENGINE_get_digest() 84 /* Gets the digest callback from an ENGINE structure */ 85 ENGINE_DIGESTS_PTR ENGINE_get_digests(const ENGINE *e) in ENGINE_get_digests() 90 /* Sets the digest callback in an ENGINE structur [all...] |
H A D | tb_rand.c | 18 void ENGINE_unregister_RAND(ENGINE *e) in ENGINE_unregister_RAND() 28 int ENGINE_register_RAND(ENGINE *e) in ENGINE_register_RAND() 39 ENGINE *e; in ENGINE_register_all_RAND() 45 int ENGINE_set_default_RAND(ENGINE *e) in ENGINE_set_default_RAND() 59 ENGINE *ENGINE_get_default_RAND(void) in ENGINE_get_default_RAND() 65 /* Obtains an RAND implementation from an ENGINE functional reference */ 66 const RAND_METHOD *ENGINE_get_RAND(const ENGINE *e) in ENGINE_get_RAND() 71 /* Sets an RAND implementation in an ENGINE structure */ 72 int ENGINE_set_RAND(ENGINE *e, const RAND_METHOD *rand_meth) in ENGINE_set_RAND()
|
/third_party/node/deps/openssl/openssl/apps/lib/ |
H A D | engine.c | 11 * Here is a set of wrappers for the ENGINE API, which are no-ops when the 12 * ENGINE API is disabled / removed. 19 #include <openssl/types.h> /* Ensure we have the ENGINE type, regardless */ 28 static ENGINE *try_load_engine(const char *engine) in try_load_engine() 30 ENGINE *e = NULL; in try_load_engine() 43 ENGINE *setup_engine_methods(const char *id, unsigned int methods, int debug) in setup_engine_methods() 45 ENGINE *e = NULL; in setup_engine_methods() 50 BIO_printf(bio_err, "Enabling auto ENGINE support\n"); in setup_engine_methods() 77 void release_engine(ENGINE *e) in release_engine() 85 int init_engine(ENGINE * [all...] |
/third_party/openssl/apps/lib/ |
H A D | engine.c | 11 * Here is a set of wrappers for the ENGINE API, which are no-ops when the 12 * ENGINE API is disabled / removed. 19 #include <openssl/types.h> /* Ensure we have the ENGINE type, regardless */ 28 static ENGINE *try_load_engine(const char *engine) in try_load_engine() 30 ENGINE *e = NULL; in try_load_engine() 43 ENGINE *setup_engine_methods(const char *id, unsigned int methods, int debug) in setup_engine_methods() 45 ENGINE *e = NULL; in setup_engine_methods() 50 BIO_printf(bio_err, "Enabling auto ENGINE support\n"); in setup_engine_methods() 77 void release_engine(ENGINE *e) in release_engine() 85 int init_engine(ENGINE * [all...] |