/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the payment-cryptography-2021-09-14.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.PaymentCryptography.Model { /// /// The list of cryptographic operations that you can perform using the key. The modes /// of use are defined in section A.5.3 of the TR-31 spec. /// public partial class KeyModesOfUse { private bool? _decrypt; private bool? _deriveKey; private bool? _encrypt; private bool? _generate; private bool? _noRestrictions; private bool? _sign; private bool? _unwrap; private bool? _verify; private bool? _wrap; /// /// Gets and sets the property Decrypt. /// /// Specifies whether an Amazon Web Services Payment Cryptography key can be used to decrypt /// data. /// /// public bool Decrypt { get { return this._decrypt.GetValueOrDefault(); } set { this._decrypt = value; } } // Check to see if Decrypt property is set internal bool IsSetDecrypt() { return this._decrypt.HasValue; } /// /// Gets and sets the property DeriveKey. /// /// Specifies whether an Amazon Web Services Payment Cryptography key can be used to derive /// new keys. /// /// public bool DeriveKey { get { return this._deriveKey.GetValueOrDefault(); } set { this._deriveKey = value; } } // Check to see if DeriveKey property is set internal bool IsSetDeriveKey() { return this._deriveKey.HasValue; } /// /// Gets and sets the property Encrypt. /// /// Specifies whether an Amazon Web Services Payment Cryptography key can be used to encrypt /// data. /// /// public bool Encrypt { get { return this._encrypt.GetValueOrDefault(); } set { this._encrypt = value; } } // Check to see if Encrypt property is set internal bool IsSetEncrypt() { return this._encrypt.HasValue; } /// /// Gets and sets the property Generate. /// /// Specifies whether an Amazon Web Services Payment Cryptography key can be used to generate /// and verify other card and PIN verification keys. /// /// public bool Generate { get { return this._generate.GetValueOrDefault(); } set { this._generate = value; } } // Check to see if Generate property is set internal bool IsSetGenerate() { return this._generate.HasValue; } /// /// Gets and sets the property NoRestrictions. /// /// Specifies whether an Amazon Web Services Payment Cryptography key has no special restrictions /// other than the restrictions implied by KeyUsage. /// /// public bool NoRestrictions { get { return this._noRestrictions.GetValueOrDefault(); } set { this._noRestrictions = value; } } // Check to see if NoRestrictions property is set internal bool IsSetNoRestrictions() { return this._noRestrictions.HasValue; } /// /// Gets and sets the property Sign. /// /// Specifies whether an Amazon Web Services Payment Cryptography key can be used for signing. /// /// public bool Sign { get { return this._sign.GetValueOrDefault(); } set { this._sign = value; } } // Check to see if Sign property is set internal bool IsSetSign() { return this._sign.HasValue; } /// /// Gets and sets the property Unwrap. /// /// Specifies whether an Amazon Web Services Payment Cryptography key can be used to unwrap /// other keys. /// /// public bool Unwrap { get { return this._unwrap.GetValueOrDefault(); } set { this._unwrap = value; } } // Check to see if Unwrap property is set internal bool IsSetUnwrap() { return this._unwrap.HasValue; } /// /// Gets and sets the property Verify. /// /// Specifies whether an Amazon Web Services Payment Cryptography key can be used to verify /// signatures. /// /// public bool Verify { get { return this._verify.GetValueOrDefault(); } set { this._verify = value; } } // Check to see if Verify property is set internal bool IsSetVerify() { return this._verify.HasValue; } /// /// Gets and sets the property Wrap. /// /// Specifies whether an Amazon Web Services Payment Cryptography key can be used to wrap /// other keys. /// /// public bool Wrap { get { return this._wrap.GetValueOrDefault(); } set { this._wrap = value; } } // Check to see if Wrap property is set internal bool IsSetWrap() { return this._wrap.HasValue; } } }