diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2017-05-31 04:53:21 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2017-05-31 04:53:21 +0800 |
commit | 484e5a628ff25b9cfc8f6a46d60a0e855aef9b17 (patch) | |
tree | f205c0527c1b48155cec523e706c0ac6a28e8e1b /include/bls | |
parent | 9424c218627d7fedc6722edd27de9f006e33583e (diff) | |
download | dexon-bls-484e5a628ff25b9cfc8f6a46d60a0e855aef9b17.tar dexon-bls-484e5a628ff25b9cfc8f6a46d60a0e855aef9b17.tar.gz dexon-bls-484e5a628ff25b9cfc8f6a46d60a0e855aef9b17.tar.bz2 dexon-bls-484e5a628ff25b9cfc8f6a46d60a0e855aef9b17.tar.lz dexon-bls-484e5a628ff25b9cfc8f6a46d60a0e855aef9b17.tar.xz dexon-bls-484e5a628ff25b9cfc8f6a46d60a0e855aef9b17.tar.zst dexon-bls-484e5a628ff25b9cfc8f6a46d60a0e855aef9b17.zip |
rename blsHashToSecretKey
Diffstat (limited to 'include/bls')
-rw-r--r-- | include/bls/bls_if.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bls/bls_if.h b/include/bls/bls_if.h index 2e81ad2..7a25b54 100644 --- a/include/bls/bls_if.h +++ b/include/bls/bls_if.h @@ -101,7 +101,7 @@ BLS_DLL_API size_t blsSecretKeyGetLittleEndian(void *buf, size_t maxBufSize, con /* hash buf and set */ -BLS_DLL_API int blsSecretKeySetToHashOf(blsSecretKey *sec, const void *buf, size_t bufSize); +BLS_DLL_API int blsHashToSecretKey(blsSecretKey *sec, const void *buf, size_t bufSize); /* set secretKey if system has /dev/urandom or CryptGenRandom return 0 if success else -1 |