Skip to content

Commit

Permalink
feat: [kms] add interoperable symmetric encryption system (#4431)
Browse files Browse the repository at this point in the history
* feat: add interoperable symmetric encryption system

PiperOrigin-RevId: 549699686

Source-Link: googleapis/googleapis@68e699a

Source-Link: googleapis/googleapis-gen@f2314eb
Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWttcy8uT3dsQm90LnlhbWwiLCJoIjoiZjIzMTRlYjI1ZDA3YjZhOTVhODU5OTljZmNhOGJiZGE2ODQ4ZDIwNCJ9

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: sofisl <55454395+sofisl@users.noreply.github.com>
  • Loading branch information
3 people committed Jul 24, 2023
1 parent bae14e2 commit 28b5dca
Show file tree
Hide file tree
Showing 4 changed files with 108 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,18 @@ message CryptoKeyVersion {
// AES-GCM (Galois Counter Mode) using 256-bit keys.
AES_256_GCM = 19;

// AES-CBC (Cipher Block Chaining Mode) using 128-bit keys.
AES_128_CBC = 42;

// AES-CBC (Cipher Block Chaining Mode) using 256-bit keys.
AES_256_CBC = 43;

// AES-CTR (Counter Mode) using 128-bit keys.
AES_128_CTR = 44;

// AES-CTR (Counter Mode) using 256-bit keys.
AES_256_CTR = 45;

// RSASSA-PSS 2048 bit key with a SHA256 digest.
RSA_SIGN_PSS_2048_SHA256 = 2;

Expand Down
4 changes: 4 additions & 0 deletions packages/google-cloud-kms/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

88 changes: 88 additions & 0 deletions packages/google-cloud-kms/protos/protos.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions packages/google-cloud-kms/protos/protos.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 28b5dca

Please sign in to comment.