Class: Google::Apis::ContaineranalysisV1beta1::SigningKey

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/containeranalysis_v1beta1/classes.rb,
lib/google/apis/containeranalysis_v1beta1/representations.rb,
lib/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SigningKey

Returns a new instance of SigningKey.



4703
4704
4705
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 4703

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

Instance Attribute Details

#key_idString

key_id is an identifier for the signing key. Corresponds to the JSON property keyId

Returns:

  • (String)


4684
4685
4686
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 4684

def key_id
  @key_id
end

#key_schemeString

This field contains the corresponding signature scheme. Eg: "rsassa-pss-sha256" . Corresponds to the JSON property keyScheme

Returns:

  • (String)


4690
4691
4692
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 4690

def key_scheme
  @key_scheme
end

#key_typeString

This field identifies the specific signing method. Eg: "rsa", "ed25519", and " ecdsa". Corresponds to the JSON property keyType

Returns:

  • (String)


4696
4697
4698
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 4696

def key_type
  @key_type
end

#public_key_valueString

This field contains the actual public key. Corresponds to the JSON property publicKeyValue

Returns:

  • (String)


4701
4702
4703
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 4701

def public_key_value
  @public_key_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4708
4709
4710
4711
4712
4713
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 4708

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