C# Class Goedel.Cryptography.Jose.JoseWebSignature

ファイルを表示 Open project: hallambaker/Mathematical-Mesh Class Usage Examples

Public Methods

Method Description
DeserializeToken ( JSONReader JSONReader, string Tag ) : void

Having read a tag, process the corresponding value data.

From ( byte _Data ) : JoseWebSignature

Create a new instance from untagged byte input. i.e. {... data ... }

From ( string _Input ) : JoseWebSignature

Create a new instance from untagged string input. i.e. {... data ... }

FromTagged ( JSONReader JSONReader ) : JoseWebSignature

Deserialize a tagged stream

FromTagged ( byte _Data ) : JoseWebSignature

Create a new instance from tagged byte input. i.e. { "JoseWebSignature" : {... data ... } }

FromTagged ( string _Input ) : JoseWebSignature

Create a new instance from tagged string input. i.e. { "JoseWebSignature" : {... data ... } }

JoseWebSignature ( ) : System

Default Constructor

JoseWebSignature ( JSONReader JSONReader ) : System

Initialize class from JSONReader stream.

JoseWebSignature ( byte Data, KeyPair SignatureKey ) : System

Sign the specified data with the specified key and construct the corresponding JWS object.

JoseWebSignature ( string _String ) : System

Initialize class from a JSON encoded class.

Serialize ( Writer Writer, bool wrap, bool &first ) : void

Serialize this object to the specified output stream.

SerializeX ( Writer _Writer, bool _wrap, bool &_first ) : void

Serialize this object to the specified output stream. Unlike the Serlialize() method, this method is not inherited from the parent class allowing a specific version of the method to be called.

Tag ( ) : string

Tag identifying this class.

Verify ( KeyPair Public ) : bool

Verify the specified signature.

Verify ( string UDF, KeyPair Public ) : bool

Verify the specified signature.

Method Details

DeserializeToken() public method

Having read a tag, process the corresponding value data.
public DeserializeToken ( JSONReader JSONReader, string Tag ) : void
JSONReader JSONReader
Tag string
return void

From() public static method

Create a new instance from untagged byte input. i.e. {... data ... }
public static From ( byte _Data ) : JoseWebSignature
_Data byte The input data.
return JoseWebSignature

From() public static method

Create a new instance from untagged string input. i.e. {... data ... }
public static From ( string _Input ) : JoseWebSignature
_Input string The input data.
return JoseWebSignature

FromTagged() public static method

Deserialize a tagged stream
public static FromTagged ( JSONReader JSONReader ) : JoseWebSignature
JSONReader JSONReader
return JoseWebSignature

FromTagged() public static method

Create a new instance from tagged byte input. i.e. { "JoseWebSignature" : {... data ... } }
public static FromTagged ( byte _Data ) : JoseWebSignature
_Data byte The input data.
return JoseWebSignature

FromTagged() public static method

Create a new instance from tagged string input. i.e. { "JoseWebSignature" : {... data ... } }
public static FromTagged ( string _Input ) : JoseWebSignature
_Input string The input data.
return JoseWebSignature

JoseWebSignature() public method

Default Constructor
public JoseWebSignature ( ) : System
return System

JoseWebSignature() public method

Initialize class from JSONReader stream.
public JoseWebSignature ( JSONReader JSONReader ) : System
JSONReader JSONReader
return System

JoseWebSignature() public method

Sign the specified data with the specified key and construct the corresponding JWS object.
public JoseWebSignature ( byte Data, KeyPair SignatureKey ) : System
Data byte Data to be signed
SignatureKey Goedel.Cryptography.KeyPair The signature key
return System

JoseWebSignature() public method

Initialize class from a JSON encoded class.
public JoseWebSignature ( string _String ) : System
_String string
return System

Serialize() public method

Serialize this object to the specified output stream.
public Serialize ( Writer Writer, bool wrap, bool &first ) : void
Writer Writer Output stream
wrap bool If true, output is wrapped with object /// start and end sequences '{ ... }'.
first bool If true, item is the first entry in a list.
return void

SerializeX() public method

Serialize this object to the specified output stream. Unlike the Serlialize() method, this method is not inherited from the parent class allowing a specific version of the method to be called.
public SerializeX ( Writer _Writer, bool _wrap, bool &_first ) : void
_Writer Writer Output stream
_wrap bool If true, output is wrapped with object /// start and end sequences '{ ... }'.
_first bool If true, item is the first entry in a list.
return void

Tag() public method

Tag identifying this class.
public Tag ( ) : string
return string

Verify() public method

Verify the specified signature.
public Verify ( KeyPair Public ) : bool
Public Goedel.Cryptography.KeyPair The public signature verification key.
return bool

Verify() public method

Verify the specified signature.
public Verify ( string UDF, KeyPair Public ) : bool
UDF string The UDF of the purported signature verification key.
Public Goedel.Cryptography.KeyPair The public signature verification key.
return bool