move DSA_SIG definition into C source file
Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
ee619197db
commit
40f43f8a2e
@ -62,7 +62,11 @@
|
|||||||
#include <openssl/asn1.h>
|
#include <openssl/asn1.h>
|
||||||
#include <openssl/asn1t.h>
|
#include <openssl/asn1t.h>
|
||||||
#include <openssl/rand.h>
|
#include <openssl/rand.h>
|
||||||
#include "dsa_locl.h"
|
|
||||||
|
struct DSA_SIG_st {
|
||||||
|
BIGNUM *r;
|
||||||
|
BIGNUM *s;
|
||||||
|
};
|
||||||
|
|
||||||
ASN1_SEQUENCE(DSA_SIG) = {
|
ASN1_SEQUENCE(DSA_SIG) = {
|
||||||
ASN1_SIMPLE(DSA_SIG, r, CBIGNUM),
|
ASN1_SIMPLE(DSA_SIG, r, CBIGNUM),
|
||||||
|
@ -65,8 +65,3 @@ int dsa_builtin_paramgen2(DSA *ret, size_t L, size_t N,
|
|||||||
size_t seed_len, int idx, unsigned char *seed_out,
|
size_t seed_len, int idx, unsigned char *seed_out,
|
||||||
int *counter_ret, unsigned long *h_ret,
|
int *counter_ret, unsigned long *h_ret,
|
||||||
BN_GENCB *cb);
|
BN_GENCB *cb);
|
||||||
|
|
||||||
struct DSA_SIG_st {
|
|
||||||
BIGNUM *r;
|
|
||||||
BIGNUM *s;
|
|
||||||
};
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user