diff options
Diffstat (limited to 'lib/crypto.h')
-rw-r--r-- | lib/crypto.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/crypto.h b/lib/crypto.h index f93ac1e550..508fce670a 100644 --- a/lib/crypto.h +++ b/lib/crypto.h @@ -25,9 +25,9 @@ #ifndef CRYPTO_H # define CRYPTO_H -gnutls_crypto_single_cipher_st *_gnutls_get_crypto_cipher( gnutls_cipher_algorithm_t algo); -gnutls_crypto_single_digest_st *_gnutls_get_crypto_digest( gnutls_digest_algorithm_t algo); -gnutls_crypto_single_mac_st *_gnutls_get_crypto_mac( gnutls_mac_algorithm_t algo); +const gnutls_crypto_cipher_st *_gnutls_get_crypto_cipher( gnutls_cipher_algorithm_t algo); +const gnutls_crypto_digest_st *_gnutls_get_crypto_digest( gnutls_digest_algorithm_t algo); +const gnutls_crypto_mac_st *_gnutls_get_crypto_mac( gnutls_mac_algorithm_t algo); void _gnutls_crypto_deregister(void); #endif /* CRYPTO_H */ |