Class: Google::Apis::BinaryauthorizationV1::PkixPublicKey
- Inherits:
-
Object
- Object
- Google::Apis::BinaryauthorizationV1::PkixPublicKey
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/binaryauthorization_v1/classes.rb,
lib/google/apis/binaryauthorization_v1/representations.rb,
lib/google/apis/binaryauthorization_v1/representations.rb
Overview
A public key in the PkixPublicKey format. Public keys of this type are typically textually encoded using the PEM format.
Instance Attribute Summary collapse
-
#key_id ⇒ String
Optional.
-
#public_key_pem ⇒ String
A PEM-encoded public key, as described in https://tools.ietf.org/html/rfc7468# section-13 Corresponds to the JSON property
publicKeyPem. -
#signature_algorithm ⇒ String
The signature algorithm used to verify a message against a signature using this key.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PkixPublicKey
constructor
A new instance of PkixPublicKey.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PkixPublicKey
Returns a new instance of PkixPublicKey.
834 835 836 |
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 834 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key_id ⇒ String
Optional. The ID of this public key. Signatures verified by Binary
Authorization must include the ID of the public key that can be used to verify
them, and that ID must match the contents of this field exactly. This may be
explicitly provided by the caller, but it MUST be a valid RFC3986 URI. If
key_id is left blank and this PkixPublicKey is not used in the context of a
wrapper (see next paragraph), a default key ID will be computed based on the
digest of the DER encoding of the public key. If this PkixPublicKey is used
in the context of a wrapper that has its own notion of key ID (e.g.
AttestorPublicKey), then this field can either: * Match that value exactly. *
Or be left blank, in which case it behaves exactly as though it is equal to
that wrapper value.
Corresponds to the JSON property keyId
818 819 820 |
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 818 def key_id @key_id end |
#public_key_pem ⇒ String
A PEM-encoded public key, as described in https://tools.ietf.org/html/rfc7468#
section-13
Corresponds to the JSON property publicKeyPem
824 825 826 |
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 824 def public_key_pem @public_key_pem end |
#signature_algorithm ⇒ String
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
832 833 834 |
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 832 def signature_algorithm @signature_algorithm end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
839 840 841 842 843 |
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 839 def update!(**args) @key_id = args[:key_id] if args.key?(:key_id) @public_key_pem = args[:public_key_pem] if args.key?(:public_key_pem) @signature_algorithm = args[:signature_algorithm] if args.key?(:signature_algorithm) end |