google-cloud-kms-inventory-v1 0.21.0 → 0.22.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: 9469a612af2e000cf70f1db61958b6064dd0bb35057d87bf4bf6a587d430c7d9
|
|
4
|
+
data.tar.gz: da1dbfbd9525717aaecb82226bb0645141bb58d695d940d532d2e0c5b288e65a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b4d8eb6f1e365d63774606a08252a3a7aeed04881159ca6edc2f12f1c95841f9aee9e2a8d3eb5a5e39aa78d4b9ed4b558e9b9d9b92bcd9444b79a6356746140
|
|
7
|
+
data.tar.gz: 7c4ecc96b137ad7f7dd98771b813474f2571f9735801190cce3d23807d38890ebdabb49b24af38a39ec90df497f53a9b1834b8b2d1916cedf9591a51419fba97
|
|
@@ -895,6 +895,13 @@ module Google
|
|
|
895
895
|
# Output only. The public key with which to wrap key material prior to
|
|
896
896
|
# import. Only returned if {::Google::Cloud::Kms::V1::ImportJob#state state} is
|
|
897
897
|
# {::Google::Cloud::Kms::V1::ImportJob::ImportJobState::ACTIVE ACTIVE}.
|
|
898
|
+
# @!attribute [r] public_key_format
|
|
899
|
+
# @return [::Google::Cloud::Kms::V1::PublicKey::PublicKeyFormat]
|
|
900
|
+
# Output only. Specifies the
|
|
901
|
+
# {::Google::Cloud::Kms::V1::ImportJob::WrappingPublicKey WrappingPublicKey} format
|
|
902
|
+
# provided by the customer in the
|
|
903
|
+
# [KeyManagementService.GetImportJob][google.cloud.kms.v1.KeyManagementService.GetImportJob]
|
|
904
|
+
# request.
|
|
898
905
|
# @!attribute [r] attestation
|
|
899
906
|
# @return [::Google::Cloud::Kms::V1::KeyOperationAttestation]
|
|
900
907
|
# Output only. Statement that was generated and signed by the key creator
|
|
@@ -926,6 +933,19 @@ module Google
|
|
|
926
933
|
# Considerations](https://tools.ietf.org/html/rfc7468#section-2) and
|
|
927
934
|
# [Textual Encoding of Subject Public Key Info]
|
|
928
935
|
# (https://tools.ietf.org/html/rfc7468#section-13).
|
|
936
|
+
# This field gets populated by default for RSA-based import methods, if no
|
|
937
|
+
# public_key_format is specified in the request.
|
|
938
|
+
# If you want to retrieve the wrapping key of an
|
|
939
|
+
# {::Google::Cloud::Kms::V1::ImportJob ImportJob} in some other format, use
|
|
940
|
+
# [KeyManagementService.GetImportJob][google.cloud.kms.v1.KeyManagementService.GetImportJob]
|
|
941
|
+
# and set the public_key_format to the desired public key format.
|
|
942
|
+
# @!attribute [r] data
|
|
943
|
+
# @return [::String]
|
|
944
|
+
# Output only. Contains the public key, formatted according to the
|
|
945
|
+
# {::Google::Cloud::Kms::V1::PublicKey::PublicKeyFormat PublicKey.PublicKeyFormat}
|
|
946
|
+
# specified in the
|
|
947
|
+
# [KeyManagementService.GetImportJob][google.cloud.kms.v1.KeyManagementService.GetImportJob]
|
|
948
|
+
# request.
|
|
929
949
|
class WrappingPublicKey
|
|
930
950
|
include ::Google::Protobuf::MessageExts
|
|
931
951
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -981,6 +1001,33 @@ module Google
|
|
|
981
1001
|
# to technical limitations of RSA wrapping, this method cannot be used to
|
|
982
1002
|
# wrap RSA keys for import.
|
|
983
1003
|
RSA_OAEP_4096_SHA256 = 6
|
|
1004
|
+
|
|
1005
|
+
# Represents the Hybrid Public Key Encryption (HPKE) Scheme originally
|
|
1006
|
+
# defined in [RFC 9180](https://www.rfc-editor.org/rfc/rfc9180). It
|
|
1007
|
+
# involves wrapping the raw key with an ephemeral AES key, derived with
|
|
1008
|
+
# HKDF-SHA256 from an encryption context, that is, in turn obtained from
|
|
1009
|
+
# the receiver’s public key with the help of the ML-KEM-768 KEM. For more
|
|
1010
|
+
# details, see the [ML-KEM HPKE
|
|
1011
|
+
# standard](http://datatracker.ietf.org/doc/draft-ietf-hpke-pq/01/).
|
|
1012
|
+
HPKE_KEM_ML_KEM_768_HKDF_SHA256_AES_256_GCM = 8
|
|
1013
|
+
|
|
1014
|
+
# Represents the Hybrid Public Key Encryption (HPKE) Scheme originally
|
|
1015
|
+
# defined in [RFC 9180](https://www.rfc-editor.org/rfc/rfc9180). It
|
|
1016
|
+
# involves wrapping the raw key with an ephemeral AES key, derived with
|
|
1017
|
+
# HKDF-SHA256 from an encryption context, that is, in turn obtained from
|
|
1018
|
+
# the receiver’s public key with the help of the ML-KEM-1024 KEM. For more
|
|
1019
|
+
# details, see the [ML-KEM HPKE
|
|
1020
|
+
# standard](http://datatracker.ietf.org/doc/draft-ietf-hpke-pq/01/).
|
|
1021
|
+
HPKE_KEM_ML_KEM_1024_HKDF_SHA256_AES_256_GCM = 9
|
|
1022
|
+
|
|
1023
|
+
# Represents the Hybrid Public Key Encryption (HPKE) Scheme originally
|
|
1024
|
+
# defined in [RFC 9180](https://www.rfc-editor.org/rfc/rfc9180). It
|
|
1025
|
+
# involves wrapping the raw key with an ephemeral AES key, derived with
|
|
1026
|
+
# HKDF-SHA256 from an encryption context, that is, in turn obtained from
|
|
1027
|
+
# the receiver’s public key with the help of the X-Wing hybrid KEM. For
|
|
1028
|
+
# more details, see the [X-Wing
|
|
1029
|
+
# standard](http://datatracker.ietf.org/doc/draft-connolly-cfrg-xwing-kem/09/).
|
|
1030
|
+
HPKE_KEM_XWING_HKDF_SHA256_AES_256_GCM = 10
|
|
984
1031
|
end
|
|
985
1032
|
|
|
986
1033
|
# The state of the {::Google::Cloud::Kms::V1::ImportJob ImportJob}, indicating if
|