Show / Hide Table of Contents

Class SigningKey

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.

Inheritance
object
SigningKey
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.ContainerAnalysis.v1beta1.Data
Assembly: Google.Apis.ContainerAnalysis.v1beta1.dll
Syntax
public class SigningKey : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

KeyId

key_id is an identifier for the signing key.

Declaration
[JsonProperty("keyId")]
public virtual string KeyId { get; set; }
Property Value
Type Description
string

KeyScheme

This field contains the corresponding signature scheme. Eg: "rsassa-pss-sha256".

Declaration
[JsonProperty("keyScheme")]
public virtual string KeyScheme { get; set; }
Property Value
Type Description
string

KeyType

This field identifies the specific signing method. Eg: "rsa", "ed25519", and "ecdsa".

Declaration
[JsonProperty("keyType")]
public virtual string KeyType { get; set; }
Property Value
Type Description
string

PublicKeyValue

This field contains the actual public key.

Declaration
[JsonProperty("publicKeyValue")]
public virtual string PublicKeyValue { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX