Class AesGcmKey
Inherited Members
Namespace: Google.Crypto.Tink
Assembly: Confluent.SchemaRegistry.Encryption.dll
Syntax
public sealed class AesGcmKey : IMessage<AesGcmKey>, IEquatable<AesGcmKey>, IDeepCloneable<AesGcmKey>, IBufferMessage, IMessage
Constructors
AesGcmKey()
Declaration
public AesGcmKey()
AesGcmKey(AesGcmKey)
Declaration
public AesGcmKey(AesGcmKey other)
Parameters
Type | Name | Description |
---|---|---|
Aes |
other |
Fields
KeyValueFieldNumber
Field number for the "key_value" field.
Declaration
public const int KeyValueFieldNumber = 3
Field Value
Type | Description |
---|---|
int |
VersionFieldNumber
Field number for the "version" field.
Declaration
public const int VersionFieldNumber = 1
Field Value
Type | Description |
---|---|
int |
Properties
Descriptor
Declaration
public static MessageDescriptor Descriptor { get; }
Property Value
Type | Description |
---|---|
Message |
KeyValue
Declaration
public ByteString KeyValue { get; set; }
Property Value
Type | Description |
---|---|
Byte |
Parser
Declaration
public static MessageParser<AesGcmKey> Parser { get; }
Property Value
Type | Description |
---|---|
Message |
Version
Declaration
public uint Version { get; set; }
Property Value
Type | Description |
---|---|
uint |
Methods
CalculateSize()
Calculates the size of this message in Protocol Buffer wire format, in bytes.
Declaration
public int CalculateSize()
Returns
Type | Description |
---|---|
int | The number of bytes required to write this message to a coded output stream. |
Clone()
Creates a deep clone of this object.
Declaration
public AesGcmKey Clone()
Returns
Type | Description |
---|---|
Aes |
A deep clone of this object. |
Equals(AesGcmKey)
Indicates whether the current object is equal to another object of the same type.
Declaration
public bool Equals(AesGcmKey other)
Parameters
Type | Name | Description |
---|---|---|
Aes |
other | An object to compare with this object. |
Returns
Equals(object)
Determines whether the specified object is equal to the current object.
Declaration
public override bool Equals(object other)
Parameters
Type | Name | Description |
---|---|---|
object | other |
Returns
Type | Description |
---|---|
bool | true if the specified object is equal to the current object; otherwise, false. |
Overrides
GetHashCode()
Serves as the default hash function.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
int | A hash code for the current object. |
Overrides
MergeFrom(AesGcmKey)
Merges the given message into this one.
Declaration
public void MergeFrom(AesGcmKey other)
Parameters
Type | Name | Description |
---|---|---|
Aes |
other |
Remarks
See the user guide for precise merge semantics.
MergeFrom(CodedInputStream)
Merges the data from the specified coded input stream with the current message.
Declaration
public void MergeFrom(CodedInputStream input)
Parameters
Type | Name | Description |
---|---|---|
Coded |
input |
Remarks
See the user guide for precise merge semantics.
ToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | A string that represents the current object. |
Overrides
WriteTo(CodedOutputStream)
Writes the data to the given coded output stream.
Declaration
public void WriteTo(CodedOutputStream output)
Parameters
Type | Name | Description |
---|---|---|
Coded |
output | Coded output stream to write the data to. Must not be null. |