diff options
author | vnugent <public@vaughnnugent.com> | 2024-07-26 23:37:15 -0400 |
---|---|---|
committer | vnugent <public@vaughnnugent.com> | 2024-07-26 23:37:15 -0400 |
commit | 07de078a3b5b7b0043d9f81bb5a9e750a3a0c7c1 (patch) | |
tree | bb67c67e4d98bda21c6b2613549a82ee13e59b53 /src/noscrypt.c | |
parent | 54f520e4bfc0fe23e2719d44b09739aa8709451c (diff) |
refactor: Span invasion, checks and fix some evp api
Diffstat (limited to 'src/noscrypt.c')
-rw-r--r-- | src/noscrypt.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/noscrypt.c b/src/noscrypt.c index 46b3d65..deadca6 100644 --- a/src/noscrypt.c +++ b/src/noscrypt.c @@ -816,7 +816,12 @@ NC_EXPORT NCResult NC_CC NCEncryptEx( return E_VERSION_NOT_SUPPORTED; case NC_ENC_VERSION_NIP44: - return _encryptNip44Ex(ctx, (struct conversation_key*)conversationKey, args->keyData, args); + return _encryptNip44Ex( + ctx, + (struct conversation_key*)conversationKey, + args->keyData, + args + ); default: return E_VERSION_NOT_SUPPORTED; |