#include <openssl/e_os2.h>
#include <openssl/bio.h>
#include <openssl/crypto.h>
#include <openssl/ossl_typ.h>
#include <openssl/bn.h>
#include <openssl/dh.h>
Go to the source code of this file.
Classes | |
struct | DSA_SIG_st |
struct | dsa_method |
struct | dsa_st |
Typedefs | |
typedef struct DSA_SIG_st | DSA_SIG |
Functions | |
DSA * | DSAparams_dup (DSA *x) |
DSA_SIG * | DSA_SIG_new (void) |
void | DSA_SIG_free (DSA_SIG *a) |
int | i2d_DSA_SIG (const DSA_SIG *a, unsigned char **pp) |
DSA_SIG * | d2i_DSA_SIG (DSA_SIG **v, const unsigned char **pp, long length) |
DSA_SIG * | DSA_do_sign (const unsigned char *dgst, int dlen, DSA *dsa) |
int | DSA_do_verify (const unsigned char *dgst, int dgst_len, DSA_SIG *sig, DSA *dsa) |
const DSA_METHOD * | DSA_OpenSSL (void) |
void | DSA_set_default_method (const DSA_METHOD *) |
const DSA_METHOD * | DSA_get_default_method (void) |
int | DSA_set_method (DSA *dsa, const DSA_METHOD *) |
DSA * | DSA_new (void) |
DSA * | DSA_new_method (ENGINE *engine) |
void | DSA_free (DSA *r) |
int | DSA_up_ref (DSA *r) |
int | DSA_size (const DSA *) |
int | DSA_sign_setup (DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp) |
int | DSA_sign (int type, const unsigned char *dgst, int dlen, unsigned char *sig, unsigned int *siglen, DSA *dsa) |
int | DSA_verify (int type, const unsigned char *dgst, int dgst_len, const unsigned char *sigbuf, int siglen, DSA *dsa) |
int | DSA_get_ex_new_index (long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func) |
int | DSA_set_ex_data (DSA *d, int idx, void *arg) |
void * | DSA_get_ex_data (DSA *d, int idx) |
DSA * | d2i_DSAPublicKey (DSA **a, const unsigned char **pp, long length) |
DSA * | d2i_DSAPrivateKey (DSA **a, const unsigned char **pp, long length) |
DSA * | d2i_DSAparams (DSA **a, const unsigned char **pp, long length) |
DSA * | DSA_generate_parameters (int bits, unsigned char *seed, int seed_len, int *counter_ret, unsigned long *h_ret, void(*callback)(int, int, void *), void *cb_arg) |
int | DSA_generate_parameters_ex (DSA *dsa, int bits, const unsigned char *seed, int seed_len, int *counter_ret, unsigned long *h_ret, BN_GENCB *cb) |
int | DSA_generate_key (DSA *a) |
int | i2d_DSAPublicKey (const DSA *a, unsigned char **pp) |
int | i2d_DSAPrivateKey (const DSA *a, unsigned char **pp) |
int | i2d_DSAparams (const DSA *a, unsigned char **pp) |
int | DSAparams_print (BIO *bp, const DSA *x) |
int | DSA_print (BIO *bp, const DSA *x, int off) |
int | DSAparams_print_fp (FILE *fp, const DSA *x) |
int | DSA_print_fp (FILE *bp, const DSA *x, int off) |
DH * | DSA_dup_DH (const DSA *r) |
void | ERR_load_DSA_strings (void) |
#define d2i_DSAparams_bio | ( | bp, | |
x | |||
) | ASN1_d2i_bio_of(DSA,DSA_new,d2i_DSAparams,bp,x) |
#define d2i_DSAparams_fp | ( | fp, | |
x | |||
) |
#define DSA_FLAG_NO_EXP_CONSTTIME |
#define DSA_is_prime | ( | n, | |
callback, | |||
cb_arg | |||
) | BN_is_prime(n, DSS_prime_checks, callback, NULL, cb_arg) |
#define EVP_PKEY_CTRL_DSA_PARAMGEN_BITS (EVP_PKEY_ALG_CTRL + 1) |
#define EVP_PKEY_CTRL_DSA_PARAMGEN_MD (EVP_PKEY_ALG_CTRL + 3) |
#define EVP_PKEY_CTRL_DSA_PARAMGEN_Q_BITS (EVP_PKEY_ALG_CTRL + 2) |
#define EVP_PKEY_CTX_set_dsa_paramgen_bits | ( | ctx, | |
nbits | |||
) |
#define i2d_DSAparams_bio | ( | bp, | |
x | |||
) | ASN1_i2d_bio_of_const(DSA,i2d_DSAparams,bp,x) |
#define i2d_DSAparams_fp | ( | fp, | |
x | |||
) |
typedef struct DSA_SIG_st DSA_SIG |
Definition at line 66 of file dsa_sign.c.
DSA* DSA_generate_parameters | ( | int | bits, |
unsigned char * | seed, | ||
int | seed_len, | ||
int * | counter_ret, | ||
unsigned long * | h_ret, | ||
void(*)(int, int, void *) | callback, | ||
void * | cb_arg | ||
) |
Definition at line 86 of file dsa_depr.c.
const DSA_METHOD* DSA_get_default_method | ( | void | ) |
int DSA_get_ex_new_index | ( | long | argl, |
void * | argp, | ||
CRYPTO_EX_new * | new_func, | ||
CRYPTO_EX_dup * | dup_func, | ||
CRYPTO_EX_free * | free_func | ||
) |
const DSA_METHOD* DSA_OpenSSL | ( | void | ) |
Definition at line 126 of file dsa_ossl.c.
void DSA_set_default_method | ( | const DSA_METHOD * | ) |
int DSA_set_method | ( | DSA * | dsa, |
const DSA_METHOD * | |||
) |
Definition at line 103 of file dsa_sign.c.
Definition at line 92 of file dsa_sign.c.
int DSA_sign | ( | int | type, |
const unsigned char * | dgst, | ||
int | dlen, | ||
unsigned char * | sig, | ||
unsigned int * | siglen, | ||
DSA * | dsa | ||
) |
Definition at line 79 of file dsa_sign.c.
int DSA_verify | ( | int | type, |
const unsigned char * | dgst, | ||
int | dgst_len, | ||
const unsigned char * | sigbuf, | ||
int | siglen, | ||
DSA * | dsa | ||
) |
int i2d_DSA_SIG | ( | const DSA_SIG * | a, |
unsigned char ** | pp | ||
) |
int i2d_DSAparams | ( | const DSA * | a, |
unsigned char ** | pp | ||
) |
int i2d_DSAPrivateKey | ( | const DSA * | a, |
unsigned char ** | pp | ||
) |
int i2d_DSAPublicKey | ( | const DSA * | a, |
unsigned char ** | pp | ||
) |