diff options
author | Jacques Vidrine <nectar@FreeBSD.org> | 2002-07-30 22:06:11 +0000 |
---|---|---|
committer | Jacques Vidrine <nectar@FreeBSD.org> | 2002-07-30 22:06:11 +0000 |
commit | 91d8bea2b4089c48f9bac1c3e89b9f2bebe46787 (patch) | |
tree | baa8d226377e6e2b6b7b8cb5708a920af5c1425e /crypto/openssl/crypto/dsa/dsa.h | |
parent | 42db7aed42668384a7480fa974e90a841d30b217 (diff) | |
download | src-91d8bea2b4089c48f9bac1c3e89b9f2bebe46787.tar.gz src-91d8bea2b4089c48f9bac1c3e89b9f2bebe46787.zip |
MFC: OpenSSL 0.9.6e
Notes
Notes:
svn path=/stable/4/; revision=100982
Diffstat (limited to 'crypto/openssl/crypto/dsa/dsa.h')
-rw-r--r-- | crypto/openssl/crypto/dsa/dsa.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/crypto/openssl/crypto/dsa/dsa.h b/crypto/openssl/crypto/dsa/dsa.h index 3ebcc4ae0a40..c486689970d1 100644 --- a/crypto/openssl/crypto/dsa/dsa.h +++ b/crypto/openssl/crypto/dsa/dsa.h @@ -178,8 +178,6 @@ int DSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, int DSA_set_ex_data(DSA *d, int idx, void *arg); void *DSA_get_ex_data(DSA *d, int idx); -void ERR_load_DSA_strings(void ); - DSA * d2i_DSAPublicKey(DSA **a, unsigned char **pp, long length); DSA * d2i_DSAPrivateKey(DSA **a, unsigned char **pp, long length); DSA * d2i_DSAparams(DSA **a, unsigned char **pp, long length); @@ -216,6 +214,7 @@ DH *DSA_dup_DH(DSA *r); /* The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ +void ERR_load_DSA_strings(void); /* Error codes for the DSA functions. */ @@ -236,9 +235,9 @@ DH *DSA_dup_DH(DSA *r); /* Reason codes. */ #define DSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE 100 +#define DSA_R_MISSING_PARAMETERS 101 #ifdef __cplusplus } #endif #endif - |