public string Generate()

in src/Unosquare.PassCore.Web/Helpers/PasswordGenerator.cs [10:17]


        public string Generate(int entropy)
        {
            var pswBytes = new byte[entropy];
            _rngCsp.GetBytes(pswBytes);

            var encoder = new Base85(Base85Alphabet.Ascii85);
            return encoder.Encode(pswBytes);
        }