aboutsummaryrefslogtreecommitdiffstats
path: root/include/bls/bls.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/bls/bls.h')
-rw-r--r--include/bls/bls.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/bls/bls.h b/include/bls/bls.h
index 39cbf40..5e590ae 100644
--- a/include/bls/bls.h
+++ b/include/bls/bls.h
@@ -87,6 +87,9 @@ BLS_DLL_API void blsIdSetInt(blsId *id, int x);
// return 0 if success
// mask buf with (1 << (bitLen(r) - 1)) - 1 if buf >= r
BLS_DLL_API int blsSecretKeySetLittleEndian(blsSecretKey *sec, const void *buf, mclSize bufSize);
+// return 0 if success (bufSize <= 64) else -1
+// set (buf mod r) to sec
+BLS_DLL_API int blsSecretKeySetLittleEndianMod(blsSecretKey *sec, const void *buf, mclSize bufSize);
BLS_DLL_API void blsGetPublicKey(blsPublicKey *pub, const blsSecretKey *sec);