Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[crypto] Add AES-GCM-SIV #9643

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

potatosalad
Copy link
Contributor

Adding an early PR to add support for AES-GCM-SIV.

Encryption appears to work fine, decryption does not for some reason:

1> PlainText = <<"abc">>,
   Key = <<0:128>>,
   IV = <<0:96>>,
   AAD = <<>>,
   {CipherText, CipherTag} = crypto:crypto_one_time_aead(aes_gcm_siv, Key, IV, PlainText, AAD, true).
{<<17,35,57>>, <<58,46,58,153,116,118,170,193,81,1,176,128,137,182,72,207>>}
2> crypto:crypto_one_time_aead(aes_gcm_siv, Key, IV, CipherText, AAD, CipherTag, false).
error

Copy link
Contributor

github-actions bot commented Mar 25, 2025

CT Test Results

  2 files   14 suites   4m 48s ⏱️
188 tests 172 ✅  16 💤 0 ❌
470 runs  329 ✅ 141 💤 0 ❌

Results for commit 70a048d.

♻️ This comment has been updated with latest results.

To speed up review, make sure that you have read Contributing to Erlang/OTP and that all checks pass.

See the TESTING and DEVELOPMENT HowTo guides for details about how to run test locally.

Artifacts

// Erlang/OTP Github Action Bot

@IngelaAndin IngelaAndin added the team:VM Assigned to OTP team VM label Mar 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
team:VM Assigned to OTP team VM
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants