Class BinarySecret
Represents a binary secret value.
Inherited Members
Namespace: Nevatech.Vsb.Repository.Entities
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public sealed class BinarySecret : IValidator, IEquatable<BinarySecret>
Constructors
BinarySecret()
Initializes an empty instance.
Declaration
public BinarySecret()
BinarySecret(BinarySecret)
Initializes a new instance from provided secret.
Declaration
public BinarySecret(BinarySecret secret)
Parameters
Type | Name | Description |
---|---|---|
BinarySecret | secret | An existing instance to be initialized from. |
Properties
ErrorMessage
Gets the summary of validation errors.
Declaration
public string ErrorMessage { get; }
Property Value
Type | Description |
---|---|
String |
Kid
Gets or sets the key unique identifier (optional).
Declaration
public string Kid { get; set; }
Property Value
Type | Description |
---|---|
String |
Secret
Gets or sets the Base64-encoded secret value.
Declaration
public string Secret { get; set; }
Property Value
Type | Description |
---|---|
String |
Methods
Equals(BinarySecret)
Determines whether the specified object is equal to the current object.
Declaration
public bool Equals(BinarySecret other)
Parameters
Type | Name | Description |
---|---|---|
BinarySecret | other | The objects to compare with the current object. |
Returns
Type | Description |
---|---|
Boolean | True, if objects are equal. False, if objects are not equal. |
Equals(Object)
Determines whether the specified object is equal to the current object.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
Object | obj | The object to compare with the current object. |
Returns
Type | Description |
---|---|
Boolean | True, if objects are equal. False, if objects are not equal. |
Overrides
GetHashCode()
Returns the hash code for this instance.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
Int32 | Hash code of the current instance. |
Overrides
ToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String |
Overrides
Validate()
Evaluates the state of this object.
Declaration
public bool Validate()
Returns
Type | Description |
---|---|
Boolean | True if state is valid; otherwise, false. |