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

Constructor Details

#initialize(**args) ⇒ PkixPublicKey

Returns a new instance of PkixPublicKey.



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

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)


507
508
509
# File 'generated/google/apis/binaryauthorization_v1/classes.rb', line 507

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)


515
516
517
# File 'generated/google/apis/binaryauthorization_v1/classes.rb', line 515

def signature_algorithm
  @signature_algorithm
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



522
523
524
525
# File 'generated/google/apis/binaryauthorization_v1/classes.rb', line 522

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