Class: Google::Apis::ContaineranalysisV1beta1::SigningKey
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1beta1::SigningKey
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/containeranalysis_v1beta1/classes.rb,
generated/google/apis/containeranalysis_v1beta1/representations.rb,
generated/google/apis/containeranalysis_v1beta1/representations.rb
Overview
This defines the format used to record keys used in the software supply chain.
An in-toto link is attested using one or more keys defined in the in-toto
layout. An example of this is: "key_id": "
776a00e29f3559e0141b3b096f696abc6cfb0c657ab40f441132b345b0...", "key_type": "
rsa", "public_key_value": "-----BEGIN PUBLIC KEY-----\nMIIBojANBgkqhkiG9w0B..."
, "key_scheme": "rsassa-pss-sha256"
The format for in-toto's key definition
can be found in section 4.2 of the in-toto specification.
Instance Attribute Summary collapse
-
#key_id ⇒ String
key_id is an identifier for the signing key.
-
#key_scheme ⇒ String
This field contains the corresponding signature scheme.
-
#key_type ⇒ String
This field identifies the specific signing method.
-
#public_key_value ⇒ String
This field contains the actual public key.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SigningKey
constructor
A new instance of SigningKey.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SigningKey
Returns a new instance of SigningKey.
2776 2777 2778 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2776 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key_id ⇒ String
key_id is an identifier for the signing key.
Corresponds to the JSON property keyId
2757 2758 2759 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2757 def key_id @key_id end |
#key_scheme ⇒ String
This field contains the corresponding signature scheme. Eg: "rsassa-pss-sha256"
.
Corresponds to the JSON property keyScheme
2763 2764 2765 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2763 def key_scheme @key_scheme end |
#key_type ⇒ String
This field identifies the specific signing method. Eg: "rsa", "ed25519", and "
ecdsa".
Corresponds to the JSON property keyType
2769 2770 2771 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2769 def key_type @key_type end |
#public_key_value ⇒ String
This field contains the actual public key.
Corresponds to the JSON property publicKeyValue
2774 2775 2776 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2774 def public_key_value @public_key_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2781 2782 2783 2784 2785 2786 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2781 def update!(**args) @key_id = args[:key_id] if args.key?(:key_id) @key_scheme = args[:key_scheme] if args.key?(:key_scheme) @key_type = args[:key_type] if args.key?(:key_type) @public_key_value = args[:public_key_value] if args.key?(:public_key_value) end |