BraintreeEncryption.Library.BouncyCastle.Util.Encoders.Hex.Encode C# (CSharp) Method

Encode() public static method

public static Encode ( byte data ) : byte[]
data byte
return byte[]
        public static byte[] Encode(
			byte[] data)
        {
            return Encode(data, 0, data.Length);
        }

Same methods

Hex::Encode ( byte data, int off, int length ) : byte[]
Hex::Encode ( byte data, Stream outStream ) : int
Hex::Encode ( byte data, int off, int length, Stream outStream ) : int