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
System.Object
SigningKey
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.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
System.String

KeyId

key_id is an identifier for the signing key.

Declaration
[JsonProperty("keyId")]
public virtual string KeyId { get; set; }
Property Value
Type Description
System.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
System.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
System.String

PublicKeyValue

This field contains the actual public key.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top