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

From() public static method

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

Same methods

PublicKeyRSA::From ( string _Input ) : PublicKeyRSA