aboutsummaryrefslogtreecommitdiff
path: root/lib/NVault.Crypto.Noscrypt/src/NCContext.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-02-18 13:47:24 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2024-02-18 13:47:24 -0500
commit8bf42df576f494f89b6058ad2dd8a9d5cdbff0a1 (patch)
tree2723a9befa767f0abce9865b112d5833db88b136 /lib/NVault.Crypto.Noscrypt/src/NCContext.cs
parentd9f4778896407ebe6e1b8bb439d2c175b4a22f45 (diff)
refactor: deprecate secp256k1 native, transition to noscrypt library
Diffstat (limited to 'lib/NVault.Crypto.Noscrypt/src/NCContext.cs')
-rw-r--r--lib/NVault.Crypto.Noscrypt/src/NCContext.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/NVault.Crypto.Noscrypt/src/NCContext.cs b/lib/NVault.Crypto.Noscrypt/src/NCContext.cs
index a9bd47d..a4b02e0 100644
--- a/lib/NVault.Crypto.Noscrypt/src/NCContext.cs
+++ b/lib/NVault.Crypto.Noscrypt/src/NCContext.cs
@@ -67,7 +67,7 @@ namespace NVault.Crypto.Noscrypt
fixed (byte* p = &entropy)
{
NCResult result = Library.Functions.NCReInitContext.Invoke(handle, p);
- NCUtil.CheckResult<FunctionTable.NCReInitContextDelegate>(result);
+ NCUtil.CheckResult<FunctionTable.NCReInitContextDelegate>(result, true);
}
}