X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fopenssl%2Fcipher.h;h=d17e25455daec4222a1864591223f4674f094b86;hb=1fd1d5bd9330e02ab5dc32ad027f654ff2620099;hp=68acb4108cde08ab050134f639c6398e21f1685f;hpb=35d865a6348cd62d2992bb3d353e37471d902889;p=meshlink diff --git a/src/openssl/cipher.h b/src/openssl/cipher.h index 68acb410..d17e2545 100644 --- a/src/openssl/cipher.h +++ b/src/openssl/cipher.h @@ -41,8 +41,8 @@ extern void cipher_get_key(const cipher_t *, void *); extern bool cipher_set_key(cipher_t *, void *, bool); extern bool cipher_set_key_from_rsa(cipher_t *, void *, size_t, bool); extern bool cipher_regenerate_key(cipher_t *, bool); -extern bool cipher_encrypt(cipher_t *, void *indata, size_t inlen, void *outdata, size_t *outlen, bool); -extern bool cipher_decrypt(cipher_t *, void *indata, size_t inlen, void *outdata, size_t *outlen, bool); +extern bool cipher_encrypt(cipher_t *, const void *indata, size_t inlen, void *outdata, size_t *outlen, bool); +extern bool cipher_decrypt(cipher_t *, const void *indata, size_t inlen, void *outdata, size_t *outlen, bool); extern int cipher_get_nid(const cipher_t *); extern bool cipher_active(const cipher_t *);