@@ -80,7 +80,7 @@ int wc_SignatureVerify(
8080 enum wc_HashType hash_type , enum wc_SignatureType sig_type ,
8181 const byte * data , word32 data_len ,
8282 const byte * sig , word32 sig_len ,
83- const void * key , word32 key_len );
83+ void * key , word32 key_len );
8484
8585/*!
8686 \ingroup Signature
@@ -143,7 +143,7 @@ int wc_SignatureGenerate(
143143 enum wc_HashType hash_type , enum wc_SignatureType sig_type ,
144144 const byte * data , word32 data_len ,
145145 byte * sig , word32 * sig_len ,
146- const void * key , word32 key_len ,
146+ void * key , word32 key_len ,
147147 WC_RNG * rng );
148148
149149/*!
@@ -194,7 +194,7 @@ int wc_SignatureVerifyHash(enum wc_HashType hash_type,
194194 enum wc_SignatureType sig_type ,
195195 const byte * hash_data , word32 hash_len ,
196196 const byte * sig , word32 sig_len ,
197- const void * key , word32 key_len );
197+ void * key , word32 key_len );
198198
199199/*!
200200 \ingroup Signature
@@ -245,7 +245,7 @@ int wc_SignatureGenerateHash(enum wc_HashType hash_type,
245245 enum wc_SignatureType sig_type ,
246246 const byte * hash_data , word32 hash_len ,
247247 byte * sig , word32 * sig_len ,
248- const void * key , word32 key_len ,
248+ void * key , word32 key_len ,
249249 WC_RNG * rng );
250250
251251/*!
@@ -296,7 +296,7 @@ int wc_SignatureGenerateHash_ex(enum wc_HashType hash_type,
296296 enum wc_SignatureType sig_type ,
297297 const byte * hash_data , word32 hash_len ,
298298 byte * sig , word32 * sig_len ,
299- const void * key , word32 key_len ,
299+ void * key , word32 key_len ,
300300 WC_RNG * rng , int verify );
301301
302302/*!
@@ -346,5 +346,5 @@ int wc_SignatureGenerate_ex(enum wc_HashType hash_type,
346346 enum wc_SignatureType sig_type ,
347347 const byte * data , word32 data_len ,
348348 byte * sig , word32 * sig_len ,
349- const void * key , word32 key_len ,
349+ void * key , word32 key_len ,
350350 WC_RNG * rng , int verify );
0 commit comments