aboutsummaryrefslogtreecommitdiff
path: root/crypto/ecdsa
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-04-20 10:22:01 +0000
committerRichard Levitte <levitte@openssl.org>2002-04-20 10:22:01 +0000
commitce94682ce103c1f5e319722ab14b745a314cb221 (patch)
tree616a2547b1b84376973cc2b1bfd5079cd8922e4e /crypto/ecdsa
parent2d7ab7e9ea611de3cd2944934a468c2b0218f0cc (diff)
downloadopenssl-ce94682ce103c1f5e319722ab14b745a314cb221.zip
openssl-ce94682ce103c1f5e319722ab14b745a314cb221.tar.gz
openssl-ce94682ce103c1f5e319722ab14b745a314cb221.tar.bz2
No point constifying an int.
Notified by Bernd Matthes <bernd.matthes@gemplus.com>
Diffstat (limited to 'crypto/ecdsa')
-rw-r--r--crypto/ecdsa/ecdsa.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ecdsa/ecdsa.h b/crypto/ecdsa/ecdsa.h
index 9b2a17f..8dbe872 100644
--- a/crypto/ecdsa/ecdsa.h
+++ b/crypto/ecdsa/ecdsa.h
@@ -144,7 +144,7 @@ int ECDSA_sign_setup(ECDSA *ecdsa, BN_CTX *ctx, BIGNUM **kinv, BIGNUM **rp);
int ECDSA_sign(int type, const unsigned char *dgst, int dgst_len, unsigned char *sig,
unsigned int *siglen, ECDSA *ecdsa);
int ECDSA_verify(int type, const unsigned char *dgst, int dgst_len, const unsigned char *sig,
- const int sig_len, ECDSA *ecdsa);
+ int sig_len, ECDSA *ecdsa);
int ECDSA_up_ref(ECDSA *ecdsa);
void ECDSA_free(ECDSA *a);
int ECDSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,