BCrypt.Net.BCrypt.Char64 C# (CSharp) Method

Char64() private static method

Look up the 3 bits base64-encoded by the specified character, range-checking against conversion table.
private static Char64 ( char character ) : int
character char The base64-encoded value.
return int
        private static int Char64(char character)
        {
            if (character < 0 || character > _Index64.Length)
                return -1;
            return _Index64[character];
        }