Show / Hide Table of Contents

Class CertificateDescription.Types.KeyId

A KeyId identifies a specific public key, usually by hashing the public key.

Inheritance
System.Object
CertificateDescription.Types.KeyId
Implements
IMessage<CertificateDescription.Types.KeyId>
System.IEquatable<CertificateDescription.Types.KeyId>
IDeepCloneable<CertificateDescription.Types.KeyId>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.Security.PrivateCA.V1Beta1
Assembly: Google.Cloud.Security.PrivateCA.V1Beta1.dll
Syntax
public sealed class KeyId : IMessage<CertificateDescription.Types.KeyId>, IEquatable<CertificateDescription.Types.KeyId>, IDeepCloneable<CertificateDescription.Types.KeyId>, IBufferMessage, IMessage

Constructors

KeyId()

Declaration
public KeyId()

KeyId(CertificateDescription.Types.KeyId)

Declaration
public KeyId(CertificateDescription.Types.KeyId other)
Parameters
Type Name Description
CertificateDescription.Types.KeyId other

Properties

KeyId_

Optional. The value of this KeyId encoded in lowercase hexadecimal. This is most likely the 160 bit SHA-1 hash of the public key.

Declaration
public string KeyId_ { get; set; }
Property Value
Type Description
System.String
Back to top