Make DSA_SIG and ECDSA_SIG getters const.
[openssl.git] / crypto / dsa / dsa_locl.h
index d488951a16f26ec8d7291ca97248513b35f2e553..5f9fc1ebf8cd86087b75d58f0058e987e6b4cdaf 100644 (file)
@@ -32,6 +32,11 @@ struct dsa_st {
     CRYPTO_RWLOCK *lock;
 };
 
+struct DSA_SIG_st {
+    BIGNUM *r;
+    BIGNUM *s;
+};
+
 struct dsa_method {
     char *name;
     DSA_SIG *(*dsa_do_sign) (const unsigned char *dgst, int dlen, DSA *dsa);