Skip to content

Commit 28b5dca

Browse files
feat: [kms] add interoperable symmetric encryption system (#4431)
* 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 <[email protected]>
1 parent bae14e2 commit 28b5dca

4 files changed

Lines changed: 108 additions & 0 deletions

File tree

packages/google-cloud-kms/protos/google/cloud/kms/v1/resources.proto

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,18 @@ message CryptoKeyVersion {
352352
// AES-GCM (Galois Counter Mode) using 256-bit keys.
353353
AES_256_GCM = 19;
354354

355+
// AES-CBC (Cipher Block Chaining Mode) using 128-bit keys.
356+
AES_128_CBC = 42;
357+
358+
// AES-CBC (Cipher Block Chaining Mode) using 256-bit keys.
359+
AES_256_CBC = 43;
360+
361+
// AES-CTR (Counter Mode) using 128-bit keys.
362+
AES_128_CTR = 44;
363+
364+
// AES-CTR (Counter Mode) using 256-bit keys.
365+
AES_256_CTR = 45;
366+
355367
// RSASSA-PSS 2048 bit key with a SHA256 digest.
356368
RSA_SIGN_PSS_2048_SHA256 = 2;
357369

packages/google-cloud-kms/protos/protos.d.ts

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-cloud-kms/protos/protos.js

Lines changed: 88 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-cloud-kms/protos/protos.json

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)