mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-08 22:57:52 +00:00
Merge pull request #1960 from chadf/chacha20-buf-outlen
Fixed buf offset EVP_EncryptFinal_ex() to include outlen.
This commit is contained in:
commit
72919ec076
@ -991,7 +991,7 @@ namespace crypto
|
|||||||
EVP_EncryptInit_ex(ctx, NULL, NULL, key, nonce);
|
EVP_EncryptInit_ex(ctx, NULL, NULL, key, nonce);
|
||||||
EVP_EncryptUpdate(ctx, NULL, &outlen, ad, adLen);
|
EVP_EncryptUpdate(ctx, NULL, &outlen, ad, adLen);
|
||||||
EVP_EncryptUpdate(ctx, buf, &outlen, msg, msgLen);
|
EVP_EncryptUpdate(ctx, buf, &outlen, msg, msgLen);
|
||||||
EVP_EncryptFinal_ex(ctx, buf, &outlen);
|
EVP_EncryptFinal_ex(ctx, buf + outlen, &outlen);
|
||||||
EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_GET_TAG, 16, buf + msgLen);
|
EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_GET_TAG, 16, buf + msgLen);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user