From 65b2c975d2635cd562a0e4b7ff8f1989643929ee Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Thu, 30 Sep 2021 10:46:11 +0000 Subject: [PATCH] feat: add OAEP+SHA1 to the list of supported algorithms (#181) - [ ] Regenerate this pull request now. PiperOrigin-RevId: 399728217 Source-Link: https://github.com/googleapis/googleapis/commit/9d7c7433b1efd3df2fe6e32c6b9020e4d704d033 Source-Link: https://github.com/googleapis/googleapis-gen/commit/01eddbf183f5ed35fb416efd1b1beb5dbeb78944 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMDFlZGRiZjE4M2Y1ZWQzNWZiNDE2ZWZkMWIxYmViNWRiZWI3ODk0NCJ9 --- google/cloud/kms_v1/types/resources.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/google/cloud/kms_v1/types/resources.py b/google/cloud/kms_v1/types/resources.py index 6686a3ca..8f2da1b3 100644 --- a/google/cloud/kms_v1/types/resources.py +++ b/google/cloud/kms_v1/types/resources.py @@ -412,6 +412,9 @@ class CryptoKeyVersionAlgorithm(proto.Enum): RSA_DECRYPT_OAEP_3072_SHA256 = 9 RSA_DECRYPT_OAEP_4096_SHA256 = 10 RSA_DECRYPT_OAEP_4096_SHA512 = 17 + RSA_DECRYPT_OAEP_2048_SHA1 = 37 + RSA_DECRYPT_OAEP_3072_SHA1 = 38 + RSA_DECRYPT_OAEP_4096_SHA1 = 39 EC_SIGN_P256_SHA256 = 12 EC_SIGN_P384_SHA384 = 13 EC_SIGN_SECP256K1_SHA256 = 31