Class: Google::Apis::CloudkmsV1::Digest

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudkms_v1/classes.rb,
generated/google/apis/cloudkms_v1/representations.rb,
generated/google/apis/cloudkms_v1/representations.rb

Overview

A Digest holds a cryptographic message digest.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Digest

Returns a new instance of Digest.



627
628
629
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 627

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#sha256String

A message digest produced with the SHA-256 algorithm. Corresponds to the JSON property sha256 NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


613
614
615
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 613

def sha256
  @sha256
end

#sha384String

A message digest produced with the SHA-384 algorithm. Corresponds to the JSON property sha384 NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


619
620
621
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 619

def sha384
  @sha384
end

#sha512String

A message digest produced with the SHA-512 algorithm. Corresponds to the JSON property sha512 NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


625
626
627
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 625

def sha512
  @sha512
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



632
633
634
635
636
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 632

def update!(**args)
  @sha256 = args[:sha256] if args.key?(:sha256)
  @sha384 = args[:sha384] if args.key?(:sha384)
  @sha512 = args[:sha512] if args.key?(:sha512)
end