BgEngine.Infraestructure.Security.CodeFirstCrypto.GenerateSalt C# (CSharp) Method

GenerateSalt() public static method

public static GenerateSalt ( int byteLength = SALT_SIZE ) : string
byteLength int
return string
        public static string GenerateSalt(int byteLength = SALT_SIZE)
        {
            return Convert.ToBase64String(GenerateSaltInternal(byteLength));
        }