diff options
author | vnugent <public@vaughnnugent.com> | 2024-04-23 14:48:05 -0400 |
---|---|---|
committer | vnugent <public@vaughnnugent.com> | 2024-04-23 14:48:05 -0400 |
commit | 30e8dda6cbea86bdee6d5dfe48514385d3b9f81b (patch) | |
tree | 49a4e59a5e0bdf867e31168852d7299c6bb7c783 /src/noscrypt.h | |
parent | d09c6c1bd5da3e2d79351daeba304ca99976a726 (diff) |
refactor: Crypto dep redesign working on Windows
Diffstat (limited to 'src/noscrypt.h')
-rw-r--r-- | src/noscrypt.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/noscrypt.h b/src/noscrypt.h index 06746ce..a8a42ee 100644 --- a/src/noscrypt.h +++ b/src/noscrypt.h @@ -145,6 +145,10 @@ typedef struct nc_encryption_struct { /* The nonce used for the stream cipher. */ const uint8_t* nonce32; + /* Writes the hmac key to the buffer during encryption events. + Set to NULL on decryption */ + uint8_t* hmacKeyOut32; + /* The input data buffer to encrypt/decrypt */ const uint8_t* inputData; @@ -154,7 +158,7 @@ typedef struct nc_encryption_struct { /* The size of the data buffers. Buffers must * be the same size or larger than this value */ - size_t dataSize; + uint64_t dataSize; } NCEncryptionArgs; @@ -174,7 +178,7 @@ typedef struct nc_mac_verify { const uint8_t* payload; /* The size of the payload data */ - size_t payloadSize; + uint64_t payloadSize; } NCMacVerifyArgs; @@ -217,10 +221,10 @@ that caused the error. */ static _nc_fn_inline int NCParseErrorCode(NCResult result, uint8_t* argPositionOut) { - /* convert result to a positive value*/ NCResult asPositive; int code; + /* convert result to a positive value*/ asPositive = -result; /* Get the error code from the lower 8 bits and the argument position from the upper 8 bits*/ @@ -315,7 +319,7 @@ NC_EXPORT NCResult NC_CC NCSignData( const NCSecretKey* sk, const uint8_t random32[32], const uint8_t* data, - const size_t dataSize, + const uint64_t dataSize, uint8_t sig64[64] ); @@ -332,7 +336,7 @@ NC_EXPORT NCResult NC_CC NCVerifyData( const NCContext* ctx, const NCPublicKey* pk, const uint8_t* data, - const size_t dataSize, + const uint64_t dataSize, const uint8_t sig64[64] ); @@ -396,15 +400,13 @@ the NCEncryptEx functions for extended encryption functionality * @param sk The secret key (the local private key) * @param pk The compressed public key (x-only serialized public key) the other user's public key * @param args The encryption arguments -* @param hmacKeyOut A pointer to the buffer to write the hmac key to * @return NC_SUCCESS if the operation was successful, otherwise an error code. Use NCParseErrorCode to the error code and positional argument that caused the error */ NC_EXPORT NCResult NC_CC NCEncrypt( const NCContext* ctx, const NCSecretKey* sk, - const NCPublicKey* pk, - uint8_t hmacKeyOut[NC_HMAC_KEY_SIZE], + const NCPublicKey* pk, NCEncryptionArgs* args ); @@ -500,14 +502,12 @@ NC_EXPORT NCResult NC_CC NCGetConversationKeyEx( * @param ctx A pointer to the existing library context * @param conversationKey A pointer to the conversation key * @param args A pointer to the encryption arguments structure -* @param hmacKeyOut A pointer to the buffer to write the hmac key to * @return NC_SUCCESS if the operation was successful, otherwise an error code. Use NCParseErrorCode to the error code and positional argument that caused the error. */ NC_EXPORT NCResult NC_CC NCEncryptEx( const NCContext* ctx, const uint8_t conversationKey[NC_CONV_KEY_SIZE], - uint8_t hmacKeyOut[NC_HMAC_KEY_SIZE], NCEncryptionArgs* args ); @@ -555,7 +555,7 @@ NC_EXPORT NCResult NCComputeMac( const NCContext* ctx, const uint8_t hmacKey[NC_HMAC_KEY_SIZE], const uint8_t* payload, - size_t payloadSize, + uint64_t payloadSize, uint8_t hmacOut[NC_ENCRYPTION_MAC_SIZE] ); |