Habanero.Base.Utf8Sha1Hasher.GetPasswordByteArray C# (CSharp) Method

GetPasswordByteArray() private static method

private static GetPasswordByteArray ( string value ) : byte[]
value string
return byte[]
        private static byte[] GetPasswordByteArray(string value)
        {
            return string.IsNullOrEmpty(value) ? new byte[0] : Encoding.UTF8.GetBytes(value);
        }
    }