diff options
author | rse <rse> | 1998-12-21 10:58:35 +0000 |
---|---|---|
committer | rse <rse> | 1998-12-21 10:58:35 +0000 |
commit | 6ec9415d68d769100bb599ad26eaf5c007f7bf0a (patch) | |
tree | 861cb832b9301848e3b536d31f6df850e041b87d /crypto/dsa/dsa.h | |
parent | c9d61e0435521fcdeed7301d2b847125a172ebc5 (diff) | |
download | openssl-SSLeay.tar.gz |
Import of old SSLeay release: SSLeay 0.9.1b (unreleased)SSLeay
Diffstat (limited to 'crypto/dsa/dsa.h')
-rw-r--r-- | crypto/dsa/dsa.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/dsa/dsa.h b/crypto/dsa/dsa.h index 1ca87c1cb..a231c199b 100644 --- a/crypto/dsa/dsa.h +++ b/crypto/dsa/dsa.h @@ -71,6 +71,8 @@ extern "C" { #include "bn.h" +#define DSA_FLAG_CACHE_MONT_P 0x01 + typedef struct dsa_st { /* This first variable is used to pick up errors where @@ -88,6 +90,10 @@ typedef struct dsa_st BIGNUM *kinv; /* Signing pre-calc */ BIGNUM *r; /* Signing pre-calc */ + int flags; + /* Normally used to cache montgomery values */ + char *method_mont_p; + int references; } DSA; |