Candor.Security.Cryptography.HashProvider.GetSalt C# (CSharp) Method

GetSalt() public method

Creates a true random salt with a default length of 256.
public GetSalt ( ) : String
return String
        public virtual String GetSalt()
        {
            return GetSalt(256);
        }

Same methods

HashProvider::GetSalt ( Int32 length ) : String