Goedel.Cryptography.Jose.PrivateKeyRSA.From C# (CSharp) Method

From() public static method

Create a new instance from untagged byte input. i.e. {... data ... }
public static From ( byte _Data ) : PrivateKeyRSA
_Data byte The input data.
return PrivateKeyRSA
		public static new PrivateKeyRSA From (byte[] _Data) {
			var _Input = System.Text.Encoding.UTF8.GetString(_Data);
			return From (_Input);
			}

Same methods

PrivateKeyRSA::From ( string _Input ) : PrivateKeyRSA