Skip to content

Commit

Permalink
feat: add support for additional HMAC algorithms
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 488651504
  • Loading branch information
Google APIs authored and Copybara-Service committed Nov 15, 2022
1 parent 8995a88 commit dde2e5c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions google/cloud/kms/v1/resources.proto
Expand Up @@ -403,6 +403,18 @@ message CryptoKeyVersion {
// HMAC-SHA256 signing with a 256 bit key.
HMAC_SHA256 = 32;

// HMAC-SHA1 signing with a 160 bit key.
HMAC_SHA1 = 33;

// HMAC-SHA384 signing with a 384 bit key.
HMAC_SHA384 = 34;

// HMAC-SHA512 signing with a 512 bit key.
HMAC_SHA512 = 35;

// HMAC-SHA224 signing with a 224 bit key.
HMAC_SHA224 = 36;

// Algorithm representing symmetric encryption by an external key manager.
EXTERNAL_SYMMETRIC_ENCRYPTION = 18;
}
Expand Down

0 comments on commit dde2e5c

Please sign in to comment.