aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2016-06-19 18:54:50 +0200
committerRich Salz <rsalz@openssl.org>2016-07-25 08:20:00 -0400
commit25d57dc71b7b2d024588eb3831a73cb32fc069bf (patch)
tree407da964f3801adb1e53cfe8eb5127363c36e0b2 /doc
parentc17dd597ac5ac687b4cc7b585d7f8fb0cf987a20 (diff)
downloadopenssl-25d57dc71b7b2d024588eb3831a73cb32fc069bf.tar.gz
Constify EC_KEY_*_oct2priv() input buffer
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1300)
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/EC_KEY_new.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/crypto/EC_KEY_new.pod b/doc/crypto/EC_KEY_new.pod
index b6bd432579..83a2c6d097 100644
--- a/doc/crypto/EC_KEY_new.pod
+++ b/doc/crypto/EC_KEY_new.pod
@@ -49,7 +49,7 @@ EC_KEY objects
size_t EC_KEY_key2buf(const EC_KEY *eckey, point_conversion_form_t form,
unsigned char **pbuf, BN_CTX *ctx);
- int EC_KEY_oct2priv(EC_KEY *eckey, unsigned char *buf, size_t len);
+ int EC_KEY_oct2priv(EC_KEY *eckey, const unsigned char *buf, size_t len);
size_t EC_KEY_priv2oct(const EC_KEY *eckey, unsigned char *buf, size_t len);
size_t EC_KEY_priv2buf(const EC_KEY *eckey, unsigned char **pbuf);