Module: Aws::PaymentCryptography::Types
- Defined in:
- gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb
Defined Under Namespace
Classes: AccessDeniedException, AddKeyReplicationRegionsInput, AddKeyReplicationRegionsOutput, Alias, CertificateSubjectType, ConflictException, CreateAliasInput, CreateAliasOutput, CreateKeyInput, CreateKeyOutput, DeleteAliasInput, DeleteAliasOutput, DeleteKeyInput, DeleteKeyOutput, DiffieHellmanDerivationData, DisableDefaultKeyReplicationRegionsInput, DisableDefaultKeyReplicationRegionsOutput, EnableDefaultKeyReplicationRegionsInput, EnableDefaultKeyReplicationRegionsOutput, ExportAttributes, ExportDiffieHellmanTr31KeyBlock, ExportDukptInitialKey, ExportKeyCryptogram, ExportKeyInput, ExportKeyMaterial, ExportKeyOutput, ExportTr31KeyBlock, ExportTr34KeyBlock, GetAliasInput, GetAliasOutput, GetCertificateSigningRequestInput, GetCertificateSigningRequestOutput, GetDefaultKeyReplicationRegionsOutput, GetKeyInput, GetKeyOutput, GetParametersForExportInput, GetParametersForExportOutput, GetParametersForImportInput, GetParametersForImportOutput, GetPublicKeyCertificateInput, GetPublicKeyCertificateOutput, ImportDiffieHellmanTr31KeyBlock, ImportKeyCryptogram, ImportKeyInput, ImportKeyMaterial, ImportKeyOutput, ImportTr31KeyBlock, ImportTr34KeyBlock, InternalServerException, Key, KeyAttributes, KeyBlockHeaders, KeyModesOfUse, KeySummary, ListAliasesInput, ListAliasesOutput, ListKeysInput, ListKeysOutput, ListTagsForResourceInput, ListTagsForResourceOutput, RemoveKeyReplicationRegionsInput, RemoveKeyReplicationRegionsOutput, ReplicationStatusType, ResourceNotFoundException, RestoreKeyInput, RestoreKeyOutput, RootCertificatePublicKey, ServiceQuotaExceededException, ServiceUnavailableException, StartKeyUsageInput, StartKeyUsageOutput, StopKeyUsageInput, StopKeyUsageOutput, Tag, TagResourceInput, TagResourceOutput, ThrottlingException, TrustedCertificatePublicKey, UntagResourceInput, UntagResourceOutput, UpdateAliasInput, UpdateAliasOutput, ValidationException, WrappedKey
Instance Attribute Summary collapse
-
#diffie_hellman_tr_31_key_block ⇒ Types::ImportDiffieHellmanTr31KeyBlock
Key derivation parameter information for key material import using asymmetric ECDH key exchange method.
-
#key_cryptogram ⇒ Types::ImportKeyCryptogram
Parameter information for key material import using asymmetric RSA wrap and unwrap key exchange method.
-
#root_certificate_public_key ⇒ Types::RootCertificatePublicKey
Parameter information for root public key certificate import.
-
#shared_information ⇒ String
A string containing information that binds the ECDH derived key to the two parties involved or to the context of the key.
-
#tr_31_key_block ⇒ Types::ImportTr31KeyBlock
Parameter information for key material import using symmetric TR-31 key exchange method.
-
#tr_34_key_block ⇒ Types::ImportTr34KeyBlock
Parameter information for key material import using the asymmetric TR-34 key exchange method.
-
#trusted_certificate_public_key ⇒ Types::TrustedCertificatePublicKey
Parameter information for trusted public key certificate import.
Instance Attribute Details
#diffie_hellman_tr_31_key_block ⇒ Types::ImportDiffieHellmanTr31KeyBlock
Key derivation parameter information for key material import using asymmetric ECDH key exchange method.
637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 637 class ExportKeyMaterial < Struct.new( :tr_31_key_block, :tr_34_key_block, :key_cryptogram, :diffie_hellman_tr_31_key_block, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Tr31KeyBlock < ExportKeyMaterial; end class Tr34KeyBlock < ExportKeyMaterial; end class KeyCryptogram < ExportKeyMaterial; end class DiffieHellmanTr31KeyBlock < ExportKeyMaterial; end class Unknown < ExportKeyMaterial; end end |
#key_cryptogram ⇒ Types::ImportKeyCryptogram
Parameter information for key material import using asymmetric RSA wrap and unwrap key exchange method.
637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 637 class ExportKeyMaterial < Struct.new( :tr_31_key_block, :tr_34_key_block, :key_cryptogram, :diffie_hellman_tr_31_key_block, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Tr31KeyBlock < ExportKeyMaterial; end class Tr34KeyBlock < ExportKeyMaterial; end class KeyCryptogram < ExportKeyMaterial; end class DiffieHellmanTr31KeyBlock < ExportKeyMaterial; end class Unknown < ExportKeyMaterial; end end |
#root_certificate_public_key ⇒ Types::RootCertificatePublicKey
Parameter information for root public key certificate import.
1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 1233 class ImportKeyMaterial < Struct.new( :root_certificate_public_key, :trusted_certificate_public_key, :tr_31_key_block, :tr_34_key_block, :key_cryptogram, :diffie_hellman_tr_31_key_block, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class RootCertificatePublicKey < ImportKeyMaterial; end class TrustedCertificatePublicKey < ImportKeyMaterial; end class Tr31KeyBlock < ImportKeyMaterial; end class Tr34KeyBlock < ImportKeyMaterial; end class KeyCryptogram < ImportKeyMaterial; end class DiffieHellmanTr31KeyBlock < ImportKeyMaterial; end class Unknown < ImportKeyMaterial; end end |
#shared_information ⇒ String
A string containing information that binds the ECDH derived key to the two parties involved or to the context of the key.
It may include details like identities of the two parties deriving the key, context of the operation, session IDs, and optionally a nonce. It must not contain zero bytes. It is not recommended to reuse shared information for multiple ECDH key derivations, as it could result in derived key material being the same across different derivations.
366 367 368 369 370 371 372 373 374 375 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 366 class DiffieHellmanDerivationData < Struct.new( :shared_information, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SharedInformation < DiffieHellmanDerivationData; end class Unknown < DiffieHellmanDerivationData; end end |
#tr_31_key_block ⇒ Types::ImportTr31KeyBlock
Parameter information for key material import using symmetric TR-31 key exchange method.
637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 637 class ExportKeyMaterial < Struct.new( :tr_31_key_block, :tr_34_key_block, :key_cryptogram, :diffie_hellman_tr_31_key_block, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Tr31KeyBlock < ExportKeyMaterial; end class Tr34KeyBlock < ExportKeyMaterial; end class KeyCryptogram < ExportKeyMaterial; end class DiffieHellmanTr31KeyBlock < ExportKeyMaterial; end class Unknown < ExportKeyMaterial; end end |
#tr_34_key_block ⇒ Types::ImportTr34KeyBlock
Parameter information for key material import using the asymmetric TR-34 key exchange method.
637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 637 class ExportKeyMaterial < Struct.new( :tr_31_key_block, :tr_34_key_block, :key_cryptogram, :diffie_hellman_tr_31_key_block, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Tr31KeyBlock < ExportKeyMaterial; end class Tr34KeyBlock < ExportKeyMaterial; end class KeyCryptogram < ExportKeyMaterial; end class DiffieHellmanTr31KeyBlock < ExportKeyMaterial; end class Unknown < ExportKeyMaterial; end end |
#trusted_certificate_public_key ⇒ Types::TrustedCertificatePublicKey
Parameter information for trusted public key certificate import.
1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 1233 class ImportKeyMaterial < Struct.new( :root_certificate_public_key, :trusted_certificate_public_key, :tr_31_key_block, :tr_34_key_block, :key_cryptogram, :diffie_hellman_tr_31_key_block, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class RootCertificatePublicKey < ImportKeyMaterial; end class TrustedCertificatePublicKey < ImportKeyMaterial; end class Tr31KeyBlock < ImportKeyMaterial; end class Tr34KeyBlock < ImportKeyMaterial; end class KeyCryptogram < ImportKeyMaterial; end class DiffieHellmanTr31KeyBlock < ImportKeyMaterial; end class Unknown < ImportKeyMaterial; end end |