1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package paymentcryptography
import (
"context"
"fmt"
awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
"github.com/aws/aws-sdk-go-v2/service/paymentcryptography/types"
"github.com/aws/smithy-go/middleware"
smithyhttp "github.com/aws/smithy-go/transport/http"
)
// Imports symmetric keys and public key certificates in PEM format (base64
// encoded) into Amazon Web Services Payment Cryptography.
//
// Amazon Web Services Payment Cryptography simplifies key exchange by replacing
// the existing paper-based approach with a modern electronic approach. With
// ImportKey you can import symmetric keys using either symmetric and asymmetric
// key exchange mechanisms.
//
// For symmetric key exchange, Amazon Web Services Payment Cryptography uses the
// ANSI X9 TR-31 norm in accordance with PCI PIN guidelines. And for asymmetric key
// exchange, Amazon Web Services Payment Cryptography supports ANSI X9 TR-34 norm
// and RSA wrap and unwrap key exchange mechanisms. Asymmetric key exchange methods
// are typically used to establish bi-directional trust between the two parties
// exhanging keys and are used for initial key exchange such as Key Encryption Key
// (KEK) or Zone Master Key (ZMK). After which you can import working keys using
// symmetric method to perform various cryptographic operations within Amazon Web
// Services Payment Cryptography.
//
// The TR-34 norm is intended for exchanging 3DES keys only and keys are imported
// in a WrappedKeyBlock format. Key attributes (such as KeyUsage, KeyAlgorithm,
// KeyModesOfUse, Exportability) are contained within the key block. With RSA wrap
// and unwrap, you can exchange both 3DES and AES-128 keys. The keys are imported
// in a WrappedKeyCryptogram format and you will need to specify the key attributes
// during import.
//
// You can also import a root public key certificate, used to sign other public
// key certificates, or a trusted public key certificate under an already
// established root public key certificate.
//
// # To import a public root key certificate
//
// You can also import a root public key certificate, used to sign other public
// key certificates, or a trusted public key certificate under an already
// established root public key certificate.
//
// # To import a public root key certificate
//
// Using this operation, you can import the public component (in PEM cerificate
// format) of your private root key. You can use the imported public root key
// certificate for digital signatures, for example signing wrapping key or signing
// key in TR-34, within your Amazon Web Services Payment Cryptography account.
//
// Set the following parameters:
//
// - KeyMaterial : RootCertificatePublicKey
//
// - KeyClass : PUBLIC_KEY
//
// - KeyModesOfUse : Verify
//
// - KeyUsage : TR31_S0_ASYMMETRIC_KEY_FOR_DIGITAL_SIGNATURE
//
// - PublicKeyCertificate : The public key certificate in PEM format (base64
// encoded) of the private root key under import.
//
// # To import a trusted public key certificate
//
// The root public key certificate must be in place and operational before you
// import a trusted public key certificate. Set the following parameters:
//
// - KeyMaterial : TrustedCertificatePublicKey
//
// - CertificateAuthorityPublicKeyIdentifier : KeyArn of the
// RootCertificatePublicKey .
//
// - KeyModesOfUse and KeyUsage : Corresponding to the cryptographic operations
// such as wrap, sign, or encrypt that you will allow the trusted public key
// certificate to perform.
//
// - PublicKeyCertificate : The trusted public key certificate in PEM format
// (base64 encoded) under import.
//
// # To import initial keys (KEK or ZMK or similar) using TR-34
//
// Using this operation, you can import initial key using TR-34 asymmetric key
// exchange. In TR-34 terminology, the sending party of the key is called Key
// Distribution Host (KDH) and the receiving party of the key is called Key
// Receiving Device (KRD). During the key import process, KDH is the user who
// initiates the key import and KRD is Amazon Web Services Payment Cryptography who
// receives the key.
//
// To initiate TR-34 key import, the KDH must obtain an import token by calling [GetParametersForImport].
// This operation generates an encryption keypair for the purpose of key import,
// signs the key and returns back the wrapping key certificate (also known as KRD
// wrapping certificate) and the root certificate chain. The KDH must trust and
// install the KRD wrapping certificate on its HSM and use it to encrypt (wrap) the
// KDH key during TR-34 WrappedKeyBlock generation. The import token and associated
// KRD wrapping certificate expires after 7 days.
//
// Next the KDH generates a key pair for the purpose of signing the encrypted KDH
// key and provides the public certificate of the signing key to Amazon Web
// Services Payment Cryptography. The KDH will also need to import the root
// certificate chain of the KDH signing certificate by calling ImportKey for
// RootCertificatePublicKey . For more information on TR-34 key import, see section [Importing symmetric keys]
// in the Amazon Web Services Payment Cryptography User Guide.
//
// Set the following parameters:
//
// - KeyMaterial : Use Tr34KeyBlock parameters.
//
// - CertificateAuthorityPublicKeyIdentifier : The KeyARN of the certificate
// chain that signed the KDH signing key certificate.
//
// - ImportToken : Obtained from KRD by calling [GetParametersForImport].
//
// - WrappedKeyBlock : The TR-34 wrapped key material from KDH. It contains the
// KDH key under import, wrapped with KRD wrapping certificate and signed by KDH
// signing private key. This TR-34 key block is typically generated by the KDH
// Hardware Security Module (HSM) outside of Amazon Web Services Payment
// Cryptography.
//
// - SigningKeyCertificate : The public key certificate in PEM format (base64
// encoded) of the KDH signing key generated under the root certificate
// (CertificateAuthorityPublicKeyIdentifier) imported in Amazon Web Services
// Payment Cryptography.
//
// # To import initial keys (KEK or ZMK or similar) using RSA Wrap and Unwrap
//
// Using this operation, you can import initial key using asymmetric RSA wrap and
// unwrap key exchange method. To initiate import, call [GetParametersForImport]with KeyMaterial set to
// KEY_CRYPTOGRAM to generate an import token. This operation also generates an
// encryption keypair for the purpose of key import, signs the key and returns back
// the wrapping key certificate in PEM format (base64 encoded) and its root
// certificate chain. The import token and associated KRD wrapping certificate
// expires after 7 days.
//
// You must trust and install the wrapping certificate and its certificate chain
// on the sending HSM and use it to wrap the key under export for
// WrappedKeyCryptogram generation. Next call ImportKey with KeyMaterial set to
// KEY_CRYPTOGRAM and provide the ImportToken and KeyAttributes for the key under
// import.
//
// # To import working keys using TR-31
//
// Amazon Web Services Payment Cryptography uses TR-31 symmetric key exchange norm
// to import working keys. A KEK must be established within Amazon Web Services
// Payment Cryptography by using TR-34 key import or by using [CreateKey]. To initiate a
// TR-31 key import, set the following parameters:
//
// - KeyMaterial : Use Tr31KeyBlock parameters.
//
// - WrappedKeyBlock : The TR-31 wrapped key material. It contains the key under
// import, encrypted using KEK. The TR-31 key block is typically generated by a HSM
// outside of Amazon Web Services Payment Cryptography.
//
// - WrappingKeyIdentifier : The KeyArn of the KEK that Amazon Web Services
// Payment Cryptography uses to decrypt or unwrap the key under import.
//
// Cross-account use: This operation can't be used across different Amazon Web
// Services accounts.
//
// Related operations:
//
// [ExportKey]
//
// [GetParametersForImport]
//
// [Importing symmetric keys]: https://docs.aws.amazon.com/payment-cryptography/latest/userguide/keys-import.html
// [ExportKey]: https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_ExportKey.html
// [GetParametersForImport]: https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_GetParametersForImport.html
// [CreateKey]: https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_CreateKey.html
func (c *Client) ImportKey(ctx context.Context, params *ImportKeyInput, optFns ...func(*Options)) (*ImportKeyOutput, error) {
if params == nil {
params = &ImportKeyInput{}
}
result, metadata, err := c.invokeOperation(ctx, "ImportKey", params, optFns, c.addOperationImportKeyMiddlewares)
if err != nil {
return nil, err
}
out := result.(*ImportKeyOutput)
out.ResultMetadata = metadata
return out, nil
}
type ImportKeyInput struct {
// The key or public key certificate type to use during key material import, for
// example TR-34 or RootCertificatePublicKey.
//
// This member is required.
KeyMaterial types.ImportKeyMaterial
// Specifies whether import key is enabled.
Enabled *bool
// The algorithm that Amazon Web Services Payment Cryptography uses to calculate
// the key check value (KCV). It is used to validate the key integrity.
//
// For TDES keys, the KCV is computed by encrypting 8 bytes, each with value of
// zero, with the key to be checked and retaining the 3 highest order bytes of the
// encrypted result. For AES keys, the KCV is computed using a CMAC algorithm where
// the input data is 16 bytes of zero and retaining the 3 highest order bytes of
// the encrypted result.
KeyCheckValueAlgorithm types.KeyCheckValueAlgorithm
// Assigns one or more tags to the Amazon Web Services Payment Cryptography key.
// Use this parameter to tag a key when it is imported. To tag an existing Amazon
// Web Services Payment Cryptography key, use the [TagResource]operation.
//
// Each tag consists of a tag key and a tag value. Both the tag key and the tag
// value are required, but the tag value can be an empty (null) string. You can't
// have more than one tag on an Amazon Web Services Payment Cryptography key with
// the same tag key. If you specify an existing tag key with a different tag value,
// Amazon Web Services Payment Cryptography replaces the current tag value with the
// specified one.
//
// Don't include personal, confidential or sensitive information in this field.
// This field may be displayed in plaintext in CloudTrail logs and other output.
//
// Tagging or untagging an Amazon Web Services Payment Cryptography key can allow
// or deny permission to the key.
//
// [TagResource]: https://docs.aws.amazon.com/payment-cryptography/latest/APIReference/API_TagResource.html
Tags []types.Tag
noSmithyDocumentSerde
}
type ImportKeyOutput struct {
// The KeyARN of the key material imported within Amazon Web Services Payment
// Cryptography.
//
// This member is required.
Key *types.Key
// Metadata pertaining to the operation's result.
ResultMetadata middleware.Metadata
noSmithyDocumentSerde
}
func (c *Client) addOperationImportKeyMiddlewares(stack *middleware.Stack, options Options) (err error) {
if err := stack.Serialize.Add(&setOperationInputMiddleware{}, middleware.After); err != nil {
return err
}
err = stack.Serialize.Add(&awsAwsjson10_serializeOpImportKey{}, middleware.After)
if err != nil {
return err
}
err = stack.Deserialize.Add(&awsAwsjson10_deserializeOpImportKey{}, middleware.After)
if err != nil {
return err
}
if err := addProtocolFinalizerMiddlewares(stack, options, "ImportKey"); err != nil {
return fmt.Errorf("add protocol finalizers: %v", err)
}
if err = addlegacyEndpointContextSetter(stack, options); err != nil {
return err
}
if err = addSetLoggerMiddleware(stack, options); err != nil {
return err
}
if err = addClientRequestID(stack); err != nil {
return err
}
if err = addComputeContentLength(stack); err != nil {
return err
}
if err = addResolveEndpointMiddleware(stack, options); err != nil {
return err
}
if err = addComputePayloadSHA256(stack); err != nil {
return err
}
if err = addRetry(stack, options); err != nil {
return err
}
if err = addRawResponseToMetadata(stack); err != nil {
return err
}
if err = addRecordResponseTiming(stack); err != nil {
return err
}
if err = addClientUserAgent(stack, options); err != nil {
return err
}
if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
return err
}
if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
return err
}
if err = addSetLegacyContextSigningOptionsMiddleware(stack); err != nil {
return err
}
if err = addTimeOffsetBuild(stack, c); err != nil {
return err
}
if err = addUserAgentRetryMode(stack, options); err != nil {
return err
}
if err = addOpImportKeyValidationMiddleware(stack); err != nil {
return err
}
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opImportKey(options.Region), middleware.Before); err != nil {
return err
}
if err = addRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err
}
if err = addResponseErrorMiddleware(stack); err != nil {
return err
}
if err = addRequestResponseLogging(stack, options); err != nil {
return err
}
if err = addDisableHTTPSMiddleware(stack, options); err != nil {
return err
}
return nil
}
func newServiceMetadataMiddleware_opImportKey(region string) *awsmiddleware.RegisterServiceMetadata {
return &awsmiddleware.RegisterServiceMetadata{
Region: region,
ServiceID: ServiceID,
OperationName: "ImportKey",
}
}
|