From: Dr. Stephen Henson Date: Thu, 10 Mar 2016 14:24:39 +0000 (+0000) Subject: move DSA_SIG definition into C source file X-Git-Tag: OpenSSL_1_1_0-pre4~61 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=40f43f8a2e7c75f032672d198604e4fbd6a60fd8;p=oweals%2Fopenssl.git move DSA_SIG definition into C source file Reviewed-by: Rich Salz --- diff --git a/crypto/dsa/dsa_asn1.c b/crypto/dsa/dsa_asn1.c index ddf3259f0e..b2ac1e6f03 100644 --- a/crypto/dsa/dsa_asn1.c +++ b/crypto/dsa/dsa_asn1.c @@ -62,7 +62,11 @@ #include #include #include -#include "dsa_locl.h" + +struct DSA_SIG_st { + BIGNUM *r; + BIGNUM *s; +}; ASN1_SEQUENCE(DSA_SIG) = { ASN1_SIMPLE(DSA_SIG, r, CBIGNUM), diff --git a/crypto/dsa/dsa_locl.h b/crypto/dsa/dsa_locl.h index 7767e74ef9..6182495848 100644 --- a/crypto/dsa/dsa_locl.h +++ b/crypto/dsa/dsa_locl.h @@ -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, int *counter_ret, unsigned long *h_ret, BN_GENCB *cb); - -struct DSA_SIG_st { - BIGNUM *r; - BIGNUM *s; -};