google-cloud-kms-inventory-v1 0.5.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 01ac015453553e8551996661a953ac40f0738730a46d6a9bfbcc0f7b78fb2b31
4
- data.tar.gz: 6380ccd859e3a41317f6c02609d5f3e0ec201345283a8e793d51fe31e7bea517
3
+ metadata.gz: b2c624f960e301e99eb6ddb91cba6c9913b09d9dbcebb43db4fdf2bf3a0b3ca1
4
+ data.tar.gz: 44a947d8129ce7955eac2bf2faea47bcb0daa5a8ac9b7d36bd0d56b747942f3c
5
5
  SHA512:
6
- metadata.gz: ac7f2533f468a3d104591d5ccb87f2b01fd86f8865f792bfe572964c7d4744a9e51fea551fc65679edc60e653baba24883502a1977a9b4342bb2443a233fd51b
7
- data.tar.gz: 7dc515e98bf88e40ce172bfaea3442e45a170f2b712c08713b2ef18cefbbde2cf42a5d986ac298135fedb4f3f9d802c797ae1744e9039427702a7afcdb1a40a1
6
+ metadata.gz: 59e3aa3d3b92520db0479e6483a406befbc5cca49036d958456f64fe98280b46aca41a25519fc23038e94ae5034c3effc4095c6c0cfc98f5bb6617cea88203a2
7
+ data.tar.gz: 751b6b76935b9ea94e5e1613ceb36003902b2f98a83127a6a7c4aaefcdc816bc244565dc7e41d2c8d0a7f31d95f85e3ce5afe359fbb92f4c528a30b2ade82b2a
@@ -22,7 +22,7 @@ module Google
22
22
  module Kms
23
23
  module Inventory
24
24
  module V1
25
- VERSION = "0.5.0"
25
+ VERSION = "0.6.1"
26
26
  end
27
27
  end
28
28
  end
@@ -386,11 +386,11 @@ module Google
386
386
  # {::Google::Cloud::Kms::V1::CryptoKey#purpose CryptoKey.purpose}
387
387
  # {::Google::Cloud::Kms::V1::CryptoKey::CryptoKeyPurpose::ENCRYPT_DECRYPT ENCRYPT_DECRYPT}.
388
388
  #
389
- # Algorithms beginning with "RSA_SIGN_" are usable with
389
+ # Algorithms beginning with `RSA_SIGN_` are usable with
390
390
  # {::Google::Cloud::Kms::V1::CryptoKey#purpose CryptoKey.purpose}
391
391
  # {::Google::Cloud::Kms::V1::CryptoKey::CryptoKeyPurpose::ASYMMETRIC_SIGN ASYMMETRIC_SIGN}.
392
392
  #
393
- # The fields in the name after "RSA_SIGN_" correspond to the following
393
+ # The fields in the name after `RSA_SIGN_` correspond to the following
394
394
  # parameters: padding algorithm, modulus bit length, and digest algorithm.
395
395
  #
396
396
  # For PSS, the salt length used is equal to the length of digest
@@ -398,25 +398,25 @@ module Google
398
398
  # {::Google::Cloud::Kms::V1::CryptoKeyVersion::CryptoKeyVersionAlgorithm::RSA_SIGN_PSS_2048_SHA256 RSA_SIGN_PSS_2048_SHA256}
399
399
  # will use PSS with a salt length of 256 bits or 32 bytes.
400
400
  #
401
- # Algorithms beginning with "RSA_DECRYPT_" are usable with
401
+ # Algorithms beginning with `RSA_DECRYPT_` are usable with
402
402
  # {::Google::Cloud::Kms::V1::CryptoKey#purpose CryptoKey.purpose}
403
403
  # {::Google::Cloud::Kms::V1::CryptoKey::CryptoKeyPurpose::ASYMMETRIC_DECRYPT ASYMMETRIC_DECRYPT}.
404
404
  #
405
- # The fields in the name after "RSA_DECRYPT_" correspond to the following
405
+ # The fields in the name after `RSA_DECRYPT_` correspond to the following
406
406
  # parameters: padding algorithm, modulus bit length, and digest algorithm.
407
407
  #
408
- # Algorithms beginning with "EC_SIGN_" are usable with
408
+ # Algorithms beginning with `EC_SIGN_` are usable with
409
409
  # {::Google::Cloud::Kms::V1::CryptoKey#purpose CryptoKey.purpose}
410
410
  # {::Google::Cloud::Kms::V1::CryptoKey::CryptoKeyPurpose::ASYMMETRIC_SIGN ASYMMETRIC_SIGN}.
411
411
  #
412
- # The fields in the name after "EC_SIGN_" correspond to the following
412
+ # The fields in the name after `EC_SIGN_` correspond to the following
413
413
  # parameters: elliptic curve, digest algorithm.
414
414
  #
415
- # Algorithms beginning with "HMAC_" are usable with
415
+ # Algorithms beginning with `HMAC_` are usable with
416
416
  # {::Google::Cloud::Kms::V1::CryptoKey#purpose CryptoKey.purpose}
417
417
  # {::Google::Cloud::Kms::V1::CryptoKey::CryptoKeyPurpose::MAC MAC}.
418
418
  #
419
- # The suffix following "HMAC_" corresponds to the hash algorithm being used
419
+ # The suffix following `HMAC_` corresponds to the hash algorithm being used
420
420
  # (eg. SHA256).
421
421
  #
422
422
  # For more information, see [Key purposes and algorithms]
@@ -434,6 +434,18 @@ module Google
434
434
  # AES-GCM (Galois Counter Mode) using 256-bit keys.
435
435
  AES_256_GCM = 19
436
436
 
437
+ # AES-CBC (Cipher Block Chaining Mode) using 128-bit keys.
438
+ AES_128_CBC = 42
439
+
440
+ # AES-CBC (Cipher Block Chaining Mode) using 256-bit keys.
441
+ AES_256_CBC = 43
442
+
443
+ # AES-CTR (Counter Mode) using 128-bit keys.
444
+ AES_128_CTR = 44
445
+
446
+ # AES-CTR (Counter Mode) using 256-bit keys.
447
+ AES_256_CTR = 45
448
+
437
449
  # RSASSA-PSS 2048 bit key with a SHA256 digest.
438
450
  RSA_SIGN_PSS_2048_SHA256 = 2
439
451
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-kms-inventory-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-14 00:00:00.000000000 Z
11
+ date: 2023-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common