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

From() public static method

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

Same methods

JoseWebEncryption::From ( string _Input ) : JoseWebEncryption