BCrypt.Net.BCrypt.GenerateSalt C# (CSharp) 메소드

GenerateSalt() 공개 정적인 메소드

Generate a salt for use with the BCrypt.HashPassword(string,string) method selecting a reasonable default for the number of hashing rounds to apply.
public static GenerateSalt ( ) : string
리턴 string
        public static string GenerateSalt()
        {
            return GenerateSalt(GENSALT_DEFAULT_LOG2_ROUNDS);
        }

Same methods

BCrypt::GenerateSalt ( int workFactor ) : string