HomeSort by: relevance | last modified time | path
    Searched refs:ENGINE (Results 1 - 25 of 380) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
engine.h 1 /* $NetBSD: engine.h,v 1.3 2023/06/19 21:41:43 christos Exp $ */
67 #define ENGINE hc_ENGINE
73 typedef struct hc_engine ENGINE;
92 typedef int (*openssl_bind_engine)(ENGINE *, const char *, const void *);
95 ENGINE *
97 int ENGINE_free(ENGINE *);
100 ENGINE *ENGINE_by_id(const char *);
101 ENGINE *ENGINE_by_dso(const char *, const char *);
102 int ENGINE_finish(ENGINE *);
103 int ENGINE_up_ref(ENGINE *);
    [all...]
  /src/crypto/external/apache2/openssl/dist/include/openssl/
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 is 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.
166 * engine in a dynamic way. Warn: Negative return values indicate errors FO
    [all...]
  /src/crypto/external/bsd/openssl/dist/include/openssl/
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.
166 * engine in a dynamic way. Warn: Negative return values indicate errors FO
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/include/openssl/
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.
160 * engine in a dynamic way. Warn: Negative return values indicate errors FO
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/engine/
tb_dh.c 10 /* We need to use some engine deprecated APIs */
18 void ENGINE_unregister_DH(ENGINE *e)
28 int ENGINE_register_DH(ENGINE *e)
39 ENGINE *e;
45 int ENGINE_set_default_DH(ENGINE *e)
59 ENGINE *ENGINE_get_default_DH(void)
65 /* Obtains an DH implementation from an ENGINE functional reference */
66 const DH_METHOD *ENGINE_get_DH(const ENGINE *e)
71 /* Sets an DH implementation in an ENGINE structure */
72 int ENGINE_set_DH(ENGINE *e, const DH_METHOD *dh_meth
    [all...]
tb_dsa.c 10 /* We need to use some engine deprecated APIs */
18 void ENGINE_unregister_DSA(ENGINE *e)
28 int ENGINE_register_DSA(ENGINE *e)
39 ENGINE *e;
45 int ENGINE_set_default_DSA(ENGINE *e)
59 ENGINE *ENGINE_get_default_DSA(void)
65 /* Obtains an DSA implementation from an ENGINE functional reference */
66 const DSA_METHOD *ENGINE_get_DSA(const ENGINE *e)
71 /* Sets an DSA implementation in an ENGINE structure */
72 int ENGINE_set_DSA(ENGINE *e, const DSA_METHOD *dsa_meth
    [all...]
tb_eckey.c 10 /* We need to use some engine deprecated APIs */
18 void ENGINE_unregister_EC(ENGINE *e)
28 int ENGINE_register_EC(ENGINE *e)
39 ENGINE *e;
45 int ENGINE_set_default_EC(ENGINE *e)
59 ENGINE *ENGINE_get_default_EC(void)
65 /* Obtains an EC_KEY implementation from an ENGINE functional reference */
66 const EC_KEY_METHOD *ENGINE_get_EC(const ENGINE *e)
71 /* Sets an EC_KEY implementation in an ENGINE structure */
72 int ENGINE_set_EC(ENGINE *e, const EC_KEY_METHOD *ec_meth
    [all...]
tb_rand.c 10 /* We need to use some engine deprecated APIs */
18 void ENGINE_unregister_RAND(ENGINE *e)
28 int ENGINE_register_RAND(ENGINE *e)
39 ENGINE *e;
45 int ENGINE_set_default_RAND(ENGINE *e)
59 ENGINE *ENGINE_get_default_RAND(void)
65 /* Obtains an RAND implementation from an ENGINE functional reference */
66 const RAND_METHOD *ENGINE_get_RAND(const ENGINE *e)
71 /* Sets an RAND implementation in an ENGINE structure */
72 int ENGINE_set_RAND(ENGINE *e, const RAND_METHOD *rand_meth
    [all...]
tb_rsa.c 10 /* We need to use some engine deprecated APIs */
18 void ENGINE_unregister_RSA(ENGINE *e)
28 int ENGINE_register_RSA(ENGINE *e)
39 ENGINE *e;
45 int ENGINE_set_default_RSA(ENGINE *e)
59 ENGINE *ENGINE_get_default_RSA(void)
65 /* Obtains an RSA implementation from an ENGINE functional reference */
66 const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e)
71 /* Sets an RSA implementation in an ENGINE structure */
72 int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth
    [all...]
eng_local.h 16 #include "crypto/engine.h"
23 * This prints the engine's pointer address, "struct" or "funct" to
30 "engine: %p %s from %d to %d (%s:%d)\n", \
41 * callbacks in order. NB: both the "add" functions assume the engine lock to
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)
    [all...]
tb_cipher.c 10 /* We need to use some engine deprecated APIs */
17 void ENGINE_unregister_ciphers(ENGINE *e)
27 int ENGINE_register_ciphers(ENGINE *e)
42 ENGINE *e;
48 int ENGINE_set_default_ciphers(ENGINE *e)
66 ENGINE *ENGINE_get_cipher_engine(int nid)
72 /* Obtains a cipher implementation from an ENGINE functional reference */
73 const EVP_CIPHER *ENGINE_get_cipher(ENGINE *e, int nid)
84 /* Gets the cipher callback from an ENGINE structure */
85 ENGINE_CIPHERS_PTR ENGINE_get_ciphers(const ENGINE *e
    [all...]
tb_digest.c 10 /* We need to use some engine deprecated APIs */
17 void ENGINE_unregister_digests(ENGINE *e)
27 int ENGINE_register_digests(ENGINE *e)
42 ENGINE *e;
48 int ENGINE_set_default_digests(ENGINE *e)
66 ENGINE *ENGINE_get_digest_engine(int nid)
72 /* Obtains a digest implementation from an ENGINE functional reference */
73 const EVP_MD *ENGINE_get_digest(ENGINE *e, int nid)
84 /* Gets the digest callback from an ENGINE structure */
85 ENGINE_DIGESTS_PTR ENGINE_get_digests(const ENGINE *e
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/engine/
tb_dh.c 10 /* We need to use some engine deprecated APIs */
18 void ENGINE_unregister_DH(ENGINE *e)
28 int ENGINE_register_DH(ENGINE *e)
39 ENGINE *e;
45 int ENGINE_set_default_DH(ENGINE *e)
59 ENGINE *ENGINE_get_default_DH(void)
65 /* Obtains an DH implementation from an ENGINE functional reference */
66 const DH_METHOD *ENGINE_get_DH(const ENGINE *e)
71 /* Sets an DH implementation in an ENGINE structure */
72 int ENGINE_set_DH(ENGINE *e, const DH_METHOD *dh_meth
    [all...]
tb_dsa.c 10 /* We need to use some engine deprecated APIs */
18 void ENGINE_unregister_DSA(ENGINE *e)
28 int ENGINE_register_DSA(ENGINE *e)
39 ENGINE *e;
45 int ENGINE_set_default_DSA(ENGINE *e)
59 ENGINE *ENGINE_get_default_DSA(void)
65 /* Obtains an DSA implementation from an ENGINE functional reference */
66 const DSA_METHOD *ENGINE_get_DSA(const ENGINE *e)
71 /* Sets an DSA implementation in an ENGINE structure */
72 int ENGINE_set_DSA(ENGINE *e, const DSA_METHOD *dsa_meth
    [all...]
tb_eckey.c 10 /* We need to use some engine deprecated APIs */
18 void ENGINE_unregister_EC(ENGINE *e)
28 int ENGINE_register_EC(ENGINE *e)
39 ENGINE *e;
45 int ENGINE_set_default_EC(ENGINE *e)
59 ENGINE *ENGINE_get_default_EC(void)
65 /* Obtains an EC_KEY implementation from an ENGINE functional reference */
66 const EC_KEY_METHOD *ENGINE_get_EC(const ENGINE *e)
71 /* Sets an EC_KEY implementation in an ENGINE structure */
72 int ENGINE_set_EC(ENGINE *e, const EC_KEY_METHOD *ec_meth
    [all...]
tb_rand.c 10 /* We need to use some engine deprecated APIs */
18 void ENGINE_unregister_RAND(ENGINE *e)
28 int ENGINE_register_RAND(ENGINE *e)
39 ENGINE *e;
45 int ENGINE_set_default_RAND(ENGINE *e)
59 ENGINE *ENGINE_get_default_RAND(void)
65 /* Obtains an RAND implementation from an ENGINE functional reference */
66 const RAND_METHOD *ENGINE_get_RAND(const ENGINE *e)
71 /* Sets an RAND implementation in an ENGINE structure */
72 int ENGINE_set_RAND(ENGINE *e, const RAND_METHOD *rand_meth
    [all...]
tb_rsa.c 10 /* We need to use some engine deprecated APIs */
18 void ENGINE_unregister_RSA(ENGINE *e)
28 int ENGINE_register_RSA(ENGINE *e)
39 ENGINE *e;
45 int ENGINE_set_default_RSA(ENGINE *e)
59 ENGINE *ENGINE_get_default_RSA(void)
65 /* Obtains an RSA implementation from an ENGINE functional reference */
66 const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e)
71 /* Sets an RSA implementation in an ENGINE structure */
72 int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth
    [all...]
tb_cipher.c 10 /* We need to use some engine deprecated APIs */
17 void ENGINE_unregister_ciphers(ENGINE *e)
27 int ENGINE_register_ciphers(ENGINE *e)
42 ENGINE *e;
48 int ENGINE_set_default_ciphers(ENGINE *e)
66 ENGINE *ENGINE_get_cipher_engine(int nid)
72 /* Obtains a cipher implementation from an ENGINE functional reference */
73 const EVP_CIPHER *ENGINE_get_cipher(ENGINE *e, int nid)
84 /* Gets the cipher callback from an ENGINE structure */
85 ENGINE_CIPHERS_PTR ENGINE_get_ciphers(const ENGINE *e
    [all...]
tb_digest.c 10 /* We need to use some engine deprecated APIs */
17 void ENGINE_unregister_digests(ENGINE *e)
27 int ENGINE_register_digests(ENGINE *e)
42 ENGINE *e;
48 int ENGINE_set_default_digests(ENGINE *e)
66 ENGINE *ENGINE_get_digest_engine(int nid)
72 /* Obtains a digest implementation from an ENGINE functional reference */
73 const EVP_MD *ENGINE_get_digest(ENGINE *e, int nid)
84 /* Gets the digest callback from an ENGINE structure */
85 ENGINE_DIGESTS_PTR ENGINE_get_digests(const ENGINE *e
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/engine/
tb_dh.c 15 void ENGINE_unregister_DH(ENGINE *e)
25 int ENGINE_register_DH(ENGINE *e)
36 ENGINE *e;
42 int ENGINE_set_default_DH(ENGINE *e)
56 ENGINE *ENGINE_get_default_DH(void)
61 /* Obtains an DH implementation from an ENGINE functional reference */
62 const DH_METHOD *ENGINE_get_DH(const ENGINE *e)
67 /* Sets an DH implementation in an ENGINE structure */
68 int ENGINE_set_DH(ENGINE *e, const DH_METHOD *dh_meth)
tb_dsa.c 15 void ENGINE_unregister_DSA(ENGINE *e)
25 int ENGINE_register_DSA(ENGINE *e)
36 ENGINE *e;
42 int ENGINE_set_default_DSA(ENGINE *e)
56 ENGINE *ENGINE_get_default_DSA(void)
61 /* Obtains an DSA implementation from an ENGINE functional reference */
62 const DSA_METHOD *ENGINE_get_DSA(const ENGINE *e)
67 /* Sets an DSA implementation in an ENGINE structure */
68 int ENGINE_set_DSA(ENGINE *e, const DSA_METHOD *dsa_meth)
tb_eckey.c 15 void ENGINE_unregister_EC(ENGINE *e)
25 int ENGINE_register_EC(ENGINE *e)
36 ENGINE *e;
42 int ENGINE_set_default_EC(ENGINE *e)
56 ENGINE *ENGINE_get_default_EC(void)
61 /* Obtains an EC_KEY implementation from an ENGINE functional reference */
62 const EC_KEY_METHOD *ENGINE_get_EC(const ENGINE *e)
67 /* Sets an EC_KEY implementation in an ENGINE structure */
68 int ENGINE_set_EC(ENGINE *e, const EC_KEY_METHOD *ec_meth)
tb_rand.c 15 void ENGINE_unregister_RAND(ENGINE *e)
25 int ENGINE_register_RAND(ENGINE *e)
36 ENGINE *e;
42 int ENGINE_set_default_RAND(ENGINE *e)
56 ENGINE *ENGINE_get_default_RAND(void)
61 /* Obtains an RAND implementation from an ENGINE functional reference */
62 const RAND_METHOD *ENGINE_get_RAND(const ENGINE *e)
67 /* Sets an RAND implementation in an ENGINE structure */
68 int ENGINE_set_RAND(ENGINE *e, const RAND_METHOD *rand_meth)
tb_rsa.c 15 void ENGINE_unregister_RSA(ENGINE *e)
25 int ENGINE_register_RSA(ENGINE *e)
36 ENGINE *e;
42 int ENGINE_set_default_RSA(ENGINE *e)
56 ENGINE *ENGINE_get_default_RSA(void)
61 /* Obtains an RSA implementation from an ENGINE functional reference */
62 const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e)
67 /* Sets an RSA implementation in an ENGINE structure */
68 int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth)
eng_local.h 15 # include "crypto/engine.h"
23 * ENGINE structure will be monitored with a line of output on stderr for
24 * each change. This prints the engine's pointer address (truncated to
32 fprintf(stderr, "engine: %08x %s from %d to %d (%s:%d)\n", \
47 * callbacks in order. NB: both the "add" functions assume the engine lock to
59 DEFINE_STACK_OF(ENGINE)
75 ENGINE *e, const int *nids, int num_nids,
77 void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e);
80 ENGINE *engine_table_select(ENGINE_TABLE **table, int nid);
82 ENGINE *engine_table_select_tmp(ENGINE_TABLE **table, int nid, const char *f
    [all...]

Completed in 41 milliseconds

1 2 3 4 5 6 7 8 91011>>