Exemplo n.º 1
0
    public async Task <bool> AddAsync <U>(U dto) where U : IPassword
    {
        dto.PaswordHash = PBKDF2Hasher.HashPassword(dto.Password);
        T data = _mapper.Map <T, U>(dto);
        await _manager.Clients.AddAsync(data);

        return(true);
    }
    public async Task <bool> AddAsync(T dto)
    {
        T data = _mapper.Map <T>(dto);

        data.PaswordHash = PBKDF2Hasher.HashPassword(dto.Password);

        await _manager.Clients.AddAsync(data);

        return(true);
    }
Exemplo n.º 3
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="args"></param>
        static void Main(string[] args)
        {
            bool requireHashUpdate           = false;
            Dictionary <string, string> hash = new Dictionary <string, string>()
            {
                { "Password1", _hasher.HashPassword("Password1") },
                { "Password2", _hasher.HashPassword("Password2") },
                { "Password3", _hasher.HashPassword("Password3") },
                { "Password4", _hasher.HashPassword("Password4") },
                { "Password5", _hasher.HashPassword("Password5") }
            };

            while (Console.ReadKey().Key != ConsoleKey.Escape)
            {
                foreach (KeyValuePair <string, string> kvp in hash)
                {
                    Console.WriteLine($"{kvp.Key} => {kvp.Value}");

                    if (_hasher.ValidatePassword(kvp.Key, kvp.Value, out requireHashUpdate))
                    {
                        Console.WriteLine("Password is valid.");
                    }
                    else
                    {
                        Console.WriteLine("Password is not valid.");
                    }

                    if (requireHashUpdate)
                    {
                        Console.WriteLine("Password config changed. Hash is out of date.");
                        requireHashUpdate = false;
                    }
                }

                System.Diagnostics.Stopwatch stopwatch = new System.Diagnostics.Stopwatch();
                stopwatch.Start();
                _hasher.HashPassword("Password1");
                stopwatch.Stop();

                Console.WriteLine($"Computing hash took {stopwatch.ElapsedTicks} ms");
            }
        }