BraintreeEncryption.Library.BouncyCastle.Util.Arrays.AreSame C# (CSharp) Method

AreSame() private method

private AreSame ( byte a, byte b ) : bool
a byte
b byte
return bool
        public static bool AreSame(
			byte[]	a,
			byte[]	b)
        {
            return AreEqual(a, b);
        }