Class: Google::Apis::BinaryauthorizationV1::PkixPublicKey

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

Overview

A public key in the PkixPublicKey format (see https://tools.ietf.org/html/rfc5280#section-4.1.2.7 for details). Public keys of this type are typically textually encoded using the PEM format.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ PkixPublicKey

Returns a new instance of PkixPublicKey.



513
514
515
# File 'generated/google/apis/binaryauthorization_v1/classes.rb', line 513

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

Instance Attribute Details

#public_key_pemString

A PEM-encoded public key, as described in https://tools.ietf.org/html/rfc7468#section-13 Corresponds to the JSON property publicKeyPem

Returns:

  • (String)


502
503
504
# File 'generated/google/apis/binaryauthorization_v1/classes.rb', line 502

def public_key_pem
  @public_key_pem
end

#signature_algorithmString

The signature algorithm used to verify a message against a signature using this key. These signature algorithm must match the structure and any object identifiers encoded in public_key_pem (i.e. this algorithm must match that of the public key). Corresponds to the JSON property signatureAlgorithm

Returns:

  • (String)


511
512
513
# File 'generated/google/apis/binaryauthorization_v1/classes.rb', line 511

def signature_algorithm
  @signature_algorithm
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



518
519
520
521
# File 'generated/google/apis/binaryauthorization_v1/classes.rb', line 518

def update!(**args)
  @public_key_pem = args[:public_key_pem] if args.key?(:public_key_pem)
  @signature_algorithm = args[:signature_algorithm] if args.key?(:signature_algorithm)
end