From 5987b59cdde93f3c59d4e7b1df4309bee091a694 Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Tue, 13 Jun 2017 06:03:53 +0900 Subject: change const char * to const void * --- include/bls/bls.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/bls/bls.h b/include/bls/bls.h index e15a82b..54f14de 100644 --- a/include/bls/bls.h +++ b/include/bls/bls.h @@ -115,7 +115,7 @@ BLS_DLL_API int blsSecretKeyRecover(blsSecretKey *sec, const blsSecretKey *secVe BLS_DLL_API int blsPublicKeyRecover(blsPublicKey *pub, const blsPublicKey *pubVec, const blsId *idVec, size_t n); BLS_DLL_API int blsSignatureRecover(blsSignature *sig, const blsSignature *sigVec, const blsId *idVec, size_t n); -BLS_DLL_API void blsSign(blsSignature *sig, const blsSecretKey *sec, const char *m, size_t size); +BLS_DLL_API void blsSign(blsSignature *sig, const blsSecretKey *sec, const void *m, size_t size); // return 1 if valid BLS_DLL_API int blsVerify(const blsSignature *sig, const blsPublicKey *pub, const void *m, size_t size); -- cgit v1.2.3