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

From() public static method

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

Same methods

Key::From ( string _Input ) : Key