Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2005-04-27 04:04:59 +0400
committerDr. Stephen Henson <steve@openssl.org>2005-04-27 04:04:59 +0400
commit879b19801a0bb7f92639e64564e791282a2b8354 (patch)
treea84c52f49146e0f5f779808689c9ad98ce1d33f9 /crypto/dh/dh.h
parent6ec8e63af6c1835a8b222350dbabf7bb2ace094f (diff)
Change method_mont_p from (char *) to (BN_MONT_CTX *) and remove several
casts.
Diffstat (limited to 'crypto/dh/dh.h')
-rw-r--r--crypto/dh/dh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/dh/dh.h b/crypto/dh/dh.h
index a933601245..da44778b58 100644
--- a/crypto/dh/dh.h
+++ b/crypto/dh/dh.h
@@ -114,7 +114,7 @@ struct dh_st
BIGNUM *priv_key; /* x */
int flags;
- char *method_mont_p;
+ BN_MONT_CTX *method_mont_p;
/* Place holders if we want to do X9.42 DH */
BIGNUM *q;
BIGNUM *j;