google-cloud-kms-inventory-v1 0.15.0 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ded5c434099f3d6f1a691a7b5bda611b1051c1d8ff760ef06d84e4e28d3171c1
|
4
|
+
data.tar.gz: 4d0963355ca44ae7e4ff83f6ebe613ded7aec3c202ad24229c74e0d7d2957bb6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce64b9cd710f6c376f6ce7008aaed94207579d861664656d2be3bd5a7dbfcdda667c3e6d8dc26bcdc185b1c576c52825efcde426769b62e37257ab62d24fe131
|
7
|
+
data.tar.gz: 87acbd04da8cbaf24280d1e7646fd46a6e42f256dd09a27667256f78dabe21f0301a259a966efc830479934be4e798c5794b4e23a91dfe28b62964a457da5fe9
|
@@ -198,6 +198,12 @@ module Google
|
|
198
198
|
# {::Google::Cloud::Kms::V1::CryptoKey CryptoKeys} with this purpose may be used
|
199
199
|
# with [MacSign][google.cloud.kms.v1.KeyManagementService.MacSign].
|
200
200
|
MAC = 9
|
201
|
+
|
202
|
+
# {::Google::Cloud::Kms::V1::CryptoKey CryptoKeys} with this purpose may be used
|
203
|
+
# with
|
204
|
+
# [GetPublicKey][google.cloud.kms.v1.KeyManagementService.GetPublicKey]
|
205
|
+
# and [Decapsulate][google.cloud.kms.v1.KeyManagementService.Decapsulate].
|
206
|
+
KEY_ENCAPSULATION = 10
|
201
207
|
end
|
202
208
|
end
|
203
209
|
|
@@ -429,6 +435,7 @@ module Google
|
|
429
435
|
# The suffix following `HMAC_` corresponds to the hash algorithm being used
|
430
436
|
# (eg. SHA256).
|
431
437
|
#
|
438
|
+
# Algorithms beginning with `PQ_` are post-quantum.
|
432
439
|
#
|
433
440
|
# For more information, see [Key purposes and algorithms]
|
434
441
|
# (https://cloud.google.com/kms/docs/algorithms).
|
@@ -548,6 +555,16 @@ module Google
|
|
548
555
|
# Algorithm representing symmetric encryption by an external key manager.
|
549
556
|
EXTERNAL_SYMMETRIC_ENCRYPTION = 18
|
550
557
|
|
558
|
+
# ML-KEM-768 (FIPS 203)
|
559
|
+
ML_KEM_768 = 47
|
560
|
+
|
561
|
+
# ML-KEM-1024 (FIPS 203)
|
562
|
+
ML_KEM_1024 = 48
|
563
|
+
|
564
|
+
# X-Wing hybrid KEM combining ML-KEM-768 with X25519 following
|
565
|
+
# datatracker.ietf.org/doc/draft-connolly-cfrg-xwing-kem/.
|
566
|
+
KEM_XWING = 63
|
567
|
+
|
551
568
|
# The post-quantum Module-Lattice-Based Digital Signature Algorithm, at
|
552
569
|
# security level 3. Randomized version.
|
553
570
|
PQ_SIGN_ML_DSA_65 = 56
|
@@ -579,7 +596,7 @@ module Google
|
|
579
596
|
# state.
|
580
597
|
DISABLED = 2
|
581
598
|
|
582
|
-
#
|
599
|
+
# The key material of this version is destroyed and no longer stored.
|
583
600
|
# This version may only become
|
584
601
|
# {::Google::Cloud::Kms::V1::CryptoKeyVersion::CryptoKeyVersionState::ENABLED ENABLED}
|
585
602
|
# again if this version is
|
@@ -750,10 +767,18 @@ module Google
|
|
750
767
|
# (https://tools.ietf.org/html/rfc7468#section-13) for more information.
|
751
768
|
PEM = 1
|
752
769
|
|
770
|
+
# The returned public key will be encoded in DER format (the
|
771
|
+
# PrivateKeyInfo structure from RFC 5208).
|
772
|
+
DER = 2
|
773
|
+
|
753
774
|
# This is supported only for PQC algorithms.
|
754
775
|
# The key material is returned in the format defined by NIST PQC
|
755
776
|
# standards (FIPS 203, FIPS 204, and FIPS 205).
|
756
777
|
NIST_PQC = 3
|
778
|
+
|
779
|
+
# The returned public key is in raw bytes format defined in its standard
|
780
|
+
# https://datatracker.ietf.org/doc/draft-connolly-cfrg-xwing-kem.
|
781
|
+
XWING_RAW_BYTES = 4
|
757
782
|
end
|
758
783
|
end
|
759
784
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-kms-inventory-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -15,14 +15,14 @@ dependencies:
|
|
15
15
|
requirements:
|
16
16
|
- - "~>"
|
17
17
|
- !ruby/object:Gem::Version
|
18
|
-
version: '1.
|
18
|
+
version: '1.2'
|
19
19
|
type: :runtime
|
20
20
|
prerelease: false
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
22
22
|
requirements:
|
23
23
|
- - "~>"
|
24
24
|
- !ruby/object:Gem::Version
|
25
|
-
version: '1.
|
25
|
+
version: '1.2'
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: google-cloud-errors
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -121,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
121
121
|
- !ruby/object:Gem::Version
|
122
122
|
version: '0'
|
123
123
|
requirements: []
|
124
|
-
rubygems_version: 3.6.
|
124
|
+
rubygems_version: 3.6.9
|
125
125
|
specification_version: 4
|
126
126
|
summary: API Client library for the KMS Inventory V1 API
|
127
127
|
test_files: []
|