Searched refs:DSA_METHOD (Results 1 – 17 of 17) sorted by relevance
/third_party/openssl/crypto/dsa/ |
D | dsa_meth.c | 22 DSA_METHOD *DSA_meth_new(const char *name, int flags) in DSA_meth_new() 24 DSA_METHOD *dsam = OPENSSL_zalloc(sizeof(*dsam)); in DSA_meth_new() 40 void DSA_meth_free(DSA_METHOD *dsam) in DSA_meth_free() 48 DSA_METHOD *DSA_meth_dup(const DSA_METHOD *dsam) in DSA_meth_dup() 50 DSA_METHOD *ret = OPENSSL_malloc(sizeof(*ret)); in DSA_meth_dup() 66 const char *DSA_meth_get0_name(const DSA_METHOD *dsam) in DSA_meth_get0_name() 71 int DSA_meth_set1_name(DSA_METHOD *dsam, const char *name) in DSA_meth_set1_name() 86 int DSA_meth_get_flags(const DSA_METHOD *dsam) in DSA_meth_get_flags() 91 int DSA_meth_set_flags(DSA_METHOD *dsam, int flags) in DSA_meth_set_flags() 97 void *DSA_meth_get0_app_data(const DSA_METHOD *dsam) in DSA_meth_get0_app_data() [all …]
|
D | dsa_ossl.c | 30 static DSA_METHOD openssl_dsa_meth = { 45 static const DSA_METHOD *default_DSA_method = &openssl_dsa_meth; 47 void DSA_set_default_method(const DSA_METHOD *meth) in DSA_set_default_method() 52 const DSA_METHOD *DSA_get_default_method(void) in DSA_get_default_method() 57 const DSA_METHOD *DSA_OpenSSL(void) in DSA_OpenSSL()
|
D | dsa_lib.c | 24 int DSA_set_method(DSA *dsa, const DSA_METHOD *meth) in DSA_set_method() 30 const DSA_METHOD *mtmp; in DSA_set_method() 44 const DSA_METHOD *DSA_get_method(DSA *d) in DSA_get_method()
|
D | dsa_local.h | 30 const DSA_METHOD *meth;
|
/third_party/openssl/include/openssl/ |
D | dsa.h | 86 const DSA_METHOD *DSA_OpenSSL(void); 88 void DSA_set_default_method(const DSA_METHOD *); 89 const DSA_METHOD *DSA_get_default_method(void); 90 int DSA_set_method(DSA *dsa, const DSA_METHOD *); 91 const DSA_METHOD *DSA_get_method(DSA *d); 192 DSA_METHOD *DSA_meth_new(const char *name, int flags); 193 void DSA_meth_free(DSA_METHOD *dsam); 194 DSA_METHOD *DSA_meth_dup(const DSA_METHOD *dsam); 195 const char *DSA_meth_get0_name(const DSA_METHOD *dsam); 196 int DSA_meth_set1_name(DSA_METHOD *dsam, const char *name); [all …]
|
D | engine.h | 471 int ENGINE_set_DSA(ENGINE *e, const DSA_METHOD *dsa_meth); 514 const DSA_METHOD *ENGINE_get_DSA(const ENGINE *e);
|
D | ossl_typ.h | 108 typedef struct dsa_method DSA_METHOD; typedef
|
/third_party/openssl/doc/man3/ |
D | DSA_meth_new.pod | 19 DSA_METHOD *DSA_meth_new(const char *name, int flags); 21 void DSA_meth_free(DSA_METHOD *dsam); 23 DSA_METHOD *DSA_meth_dup(const DSA_METHOD *meth); 25 const char *DSA_meth_get0_name(const DSA_METHOD *dsam); 26 int DSA_meth_set1_name(DSA_METHOD *dsam, const char *name); 28 int DSA_meth_get_flags(const DSA_METHOD *dsam); 29 int DSA_meth_set_flags(DSA_METHOD *dsam, int flags); 31 void *DSA_meth_get0_app_data(const DSA_METHOD *dsam); 32 int DSA_meth_set0_app_data(DSA_METHOD *dsam, void *app_data); 34 DSA_SIG *(*DSA_meth_get_sign(const DSA_METHOD *dsam))(const unsigned char *, [all …]
|
D | DSA_set_method.pod | 12 void DSA_set_default_method(const DSA_METHOD *meth); 14 const DSA_METHOD *DSA_get_default_method(void); 16 int DSA_set_method(DSA *dsa, const DSA_METHOD *meth); 20 DSA_METHOD *DSA_OpenSSL(void); 24 A B<DSA_METHOD> specifies the functions that OpenSSL uses for DSA 30 Initially, the default DSA_METHOD is the OpenSSL internal implementation, 41 DSA_METHOD. However, the meaningfulness of this result is dependent on 46 B<rsa>. This will replace the DSA_METHOD used by the DSA key and if the 49 work with certain DSA_METHOD implementations (e.g. from an ENGINE module 51 attempting to change the DSA_METHOD for the key can have unexpected [all …]
|
D | ENGINE_add.pod | 119 int ENGINE_set_DSA(ENGINE *e, const DSA_METHOD *dsa_meth); 136 const DSA_METHOD *ENGINE_get_DSA(const ENGINE *e); 175 DSA_METHOD, DH_METHOD, RAND_METHOD, ECDH_METHOD, ECDSA_METHOD,
|
/third_party/openssl/crypto/engine/ |
D | tb_dsa.c | 62 const DSA_METHOD *ENGINE_get_DSA(const ENGINE *e) in ENGINE_get_DSA() 68 int ENGINE_set_DSA(ENGINE *e, const DSA_METHOD *dsa_meth) in ENGINE_set_DSA()
|
D | eng_local.h | 134 const DSA_METHOD *dsa_meth;
|
/third_party/openssl/util/ |
D | indent.pro | 181 -T DSA_METHOD
|
/third_party/openssl/engines/ |
D | e_capi.c | 397 static DSA_METHOD *capi_dsa_method = NULL; 411 const DSA_METHOD *ossl_dsa_meth; in capi_init()
|
/third_party/python/Lib/lib2to3/tests/data/ |
D | infinite_recursion.py | 590 DSA_METHOD = dsa_method variable 606 ('meth', POINTER(DSA_METHOD)),
|
/third_party/openssl/ |
D | NEWS | 213 DH and DH_METHOD, DSA and DSA_METHOD, RSA and RSA_METHOD, 939 o New DH_METHOD, DSA_METHOD and enhanced RSA_METHOD
|
D | CHANGES | 1729 *) Made DSA and DSA_METHOD opaque. The structures for managing DSA objects 6584 *) Make sure the default DSA_METHOD implementation only uses its 6651 *) Key-generation can now be implemented in RSA_METHOD, DSA_METHOD 12183 *) Initial support for DSA_METHOD. This is based on the RSA_METHOD and
|