Skip to content
This repository was archived by the owner on Dec 31, 2023. It is now read-only.

Commit 39ad43d

Browse files
feat: add interoperable symmetric encryption system (#403)
* feat: add interoperable symmetric encryption system PiperOrigin-RevId: 549699686 Source-Link: googleapis/googleapis@68e699a Source-Link: https://github.com/googleapis/googleapis-gen/commit/f2314eb25d07b6a95a85999cfca8bbda6848d204 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZjIzMTRlYjI1ZDA3YjZhOTVhODU5OTljZmNhOGJiZGE2ODQ4ZDIwNCJ9 * 🦉 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: Anthonios Partheniou <[email protected]>
1 parent bf9b464 commit 39ad43d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

google/cloud/kms_v1/types/resources.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -602,6 +602,16 @@ class CryptoKeyVersionAlgorithm(proto.Enum):
602602
AES_256_GCM (19):
603603
AES-GCM (Galois Counter Mode) using 256-bit
604604
keys.
605+
AES_128_CBC (42):
606+
AES-CBC (Cipher Block Chaining Mode) using
607+
128-bit keys.
608+
AES_256_CBC (43):
609+
AES-CBC (Cipher Block Chaining Mode) using
610+
256-bit keys.
611+
AES_128_CTR (44):
612+
AES-CTR (Counter Mode) using 128-bit keys.
613+
AES_256_CTR (45):
614+
AES-CTR (Counter Mode) using 256-bit keys.
605615
RSA_SIGN_PSS_2048_SHA256 (2):
606616
RSASSA-PSS 2048 bit key with a SHA256 digest.
607617
RSA_SIGN_PSS_3072_SHA256 (3):
@@ -672,6 +682,10 @@ class CryptoKeyVersionAlgorithm(proto.Enum):
672682
GOOGLE_SYMMETRIC_ENCRYPTION = 1
673683
AES_128_GCM = 41
674684
AES_256_GCM = 19
685+
AES_128_CBC = 42
686+
AES_256_CBC = 43
687+
AES_128_CTR = 44
688+
AES_256_CTR = 45
675689
RSA_SIGN_PSS_2048_SHA256 = 2
676690
RSA_SIGN_PSS_3072_SHA256 = 3
677691
RSA_SIGN_PSS_4096_SHA256 = 4

0 commit comments

Comments
 (0)