Class: OCI::KeyManagement::Models::VerifyDataDetails
- Inherits:
-
Object
- Object
- OCI::KeyManagement::Models::VerifyDataDetails
- Defined in:
- lib/oci/key_management/models/verify_data_details.rb
Overview
The details of the message that you want to verify.
Constant Summary collapse
- MESSAGE_TYPE_ENUM =
[ MESSAGE_TYPE_RAW = 'RAW'.freeze, MESSAGE_TYPE_DIGEST = 'DIGEST'.freeze ].freeze
- SIGNING_ALGORITHM_ENUM =
[ SIGNING_ALGORITHM_SHA_224_RSA_PKCS_PSS = 'SHA_224_RSA_PKCS_PSS'.freeze, SIGNING_ALGORITHM_SHA_256_RSA_PKCS_PSS = 'SHA_256_RSA_PKCS_PSS'.freeze, SIGNING_ALGORITHM_SHA_384_RSA_PKCS_PSS = 'SHA_384_RSA_PKCS_PSS'.freeze, SIGNING_ALGORITHM_SHA_512_RSA_PKCS_PSS = 'SHA_512_RSA_PKCS_PSS'.freeze, SIGNING_ALGORITHM_SHA_224_RSA_PKCS1_V1_5 = 'SHA_224_RSA_PKCS1_V1_5'.freeze, SIGNING_ALGORITHM_SHA_256_RSA_PKCS1_V1_5 = 'SHA_256_RSA_PKCS1_V1_5'.freeze, SIGNING_ALGORITHM_SHA_384_RSA_PKCS1_V1_5 = 'SHA_384_RSA_PKCS1_V1_5'.freeze, SIGNING_ALGORITHM_SHA_512_RSA_PKCS1_V1_5 = 'SHA_512_RSA_PKCS1_V1_5'.freeze, SIGNING_ALGORITHM_ECDSA_SHA_256 = 'ECDSA_SHA_256'.freeze, SIGNING_ALGORITHM_ECDSA_SHA_384 = 'ECDSA_SHA_384'.freeze, SIGNING_ALGORITHM_ECDSA_SHA_512 = 'ECDSA_SHA_512'.freeze ].freeze
Instance Attribute Summary collapse
-
#key_id ⇒ String
[Required] The OCID of the key used to sign the message.
-
#key_version_id ⇒ String
[Required] The OCID of the key version used to sign the message.
-
#message ⇒ String
[Required] The base64-encoded binary data object denoting the message or message digest to sign.
-
#message_type ⇒ String
Denotes whether the value of the message parameter is a raw message or a message digest.
-
#signature ⇒ String
[Required] The base64-encoded binary data object denoting the cryptographic signature generated for the message.
-
#signing_algorithm ⇒ String
[Required] The algorithm to use to sign the message or message digest.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ VerifyDataDetails
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ VerifyDataDetails
Initializes the object
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 |
# File 'lib/oci/key_management/models/verify_data_details.rb', line 103 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.key_id = attributes[:'keyId'] if attributes[:'keyId'] raise 'You cannot provide both :keyId and :key_id' if attributes.key?(:'keyId') && attributes.key?(:'key_id') self.key_id = attributes[:'key_id'] if attributes[:'key_id'] self.key_version_id = attributes[:'keyVersionId'] if attributes[:'keyVersionId'] raise 'You cannot provide both :keyVersionId and :key_version_id' if attributes.key?(:'keyVersionId') && attributes.key?(:'key_version_id') self.key_version_id = attributes[:'key_version_id'] if attributes[:'key_version_id'] self.signature = attributes[:'signature'] if attributes[:'signature'] self. = attributes[:'messageType'] if attributes[:'messageType'] self. = "RAW" if .nil? && !attributes.key?(:'messageType') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :messageType and :message_type' if attributes.key?(:'messageType') && attributes.key?(:'message_type') self. = attributes[:'message_type'] if attributes[:'message_type'] self. = "RAW" if .nil? && !attributes.key?(:'messageType') && !attributes.key?(:'message_type') # rubocop:disable Style/StringLiterals self. = attributes[:'message'] if attributes[:'message'] self.signing_algorithm = attributes[:'signingAlgorithm'] if attributes[:'signingAlgorithm'] raise 'You cannot provide both :signingAlgorithm and :signing_algorithm' if attributes.key?(:'signingAlgorithm') && attributes.key?(:'signing_algorithm') self.signing_algorithm = attributes[:'signing_algorithm'] if attributes[:'signing_algorithm'] end |
Instance Attribute Details
#key_id ⇒ String
[Required] The OCID of the key used to sign the message.
32 33 34 |
# File 'lib/oci/key_management/models/verify_data_details.rb', line 32 def key_id @key_id end |
#key_version_id ⇒ String
[Required] The OCID of the key version used to sign the message.
36 37 38 |
# File 'lib/oci/key_management/models/verify_data_details.rb', line 36 def key_version_id @key_version_id end |
#message ⇒ String
[Required] The base64-encoded binary data object denoting the message or message digest to sign. You can have a message up to 4096 bytes in size. To sign a larger message, provide the message digest.
51 52 53 |
# File 'lib/oci/key_management/models/verify_data_details.rb', line 51 def @message end |
#message_type ⇒ String
Denotes whether the value of the message parameter is a raw message or a message digest. The default value, RAW
, indicates a message. To indicate a message digest, use DIGEST
.
47 48 49 |
# File 'lib/oci/key_management/models/verify_data_details.rb', line 47 def @message_type end |
#signature ⇒ String
[Required] The base64-encoded binary data object denoting the cryptographic signature generated for the message.
41 42 43 |
# File 'lib/oci/key_management/models/verify_data_details.rb', line 41 def signature @signature end |
#signing_algorithm ⇒ String
[Required] The algorithm to use to sign the message or message digest. For RSA keys, supported signature schemes include PKCS #1 and RSASSA-PSS, along with different hashing algorithms. For ECDSA keys, ECDSA is the supported signature scheme with different hashing algorithms. When you pass a message digest for signing, ensure that you specify the same hashing algorithm as used when creating the message digest.
61 62 63 |
# File 'lib/oci/key_management/models/verify_data_details.rb', line 61 def signing_algorithm @signing_algorithm end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/oci/key_management/models/verify_data_details.rb', line 64 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'key_id': :'keyId', 'key_version_id': :'keyVersionId', 'signature': :'signature', 'message_type': :'messageType', 'message': :'message', 'signing_algorithm': :'signingAlgorithm' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/oci/key_management/models/verify_data_details.rb', line 78 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'key_id': :'String', 'key_version_id': :'String', 'signature': :'String', 'message_type': :'String', 'message': :'String', 'signing_algorithm': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
163 164 165 166 167 168 169 170 171 172 173 |
# File 'lib/oci/key_management/models/verify_data_details.rb', line 163 def ==(other) return true if equal?(other) self.class == other.class && key_id == other.key_id && key_version_id == other.key_version_id && signature == other.signature && == other. && == other. && signing_algorithm == other.signing_algorithm end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
# File 'lib/oci/key_management/models/verify_data_details.rb', line 198 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) public_method("#{key}=").call( attributes[self.class.attribute_map[key]] .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? public_method("#{key}=").call( OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]) ) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(other) ⇒ Boolean
178 179 180 |
# File 'lib/oci/key_management/models/verify_data_details.rb', line 178 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
187 188 189 |
# File 'lib/oci/key_management/models/verify_data_details.rb', line 187 def hash [key_id, key_version_id, signature, , , signing_algorithm].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
231 232 233 234 235 236 237 238 239 240 |
# File 'lib/oci/key_management/models/verify_data_details.rb', line 231 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = public_method(attr).call next if value.nil? && !instance_variable_defined?("@#{attr}") hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
225 226 227 |
# File 'lib/oci/key_management/models/verify_data_details.rb', line 225 def to_s to_hash.to_s end |