Update "User" API

This commit is contained in:
Sébastien André
2020-03-12 17:11:36 +01:00
parent 32a27b6d26
commit ea25a28a78
4 changed files with 39 additions and 9 deletions

View File

@@ -1,10 +1,10 @@
using System;
using System.Collections.Generic;
using skydiveLogs_api.Business.Interface;
using skydiveLogs_api.Business.Interface;
using skydiveLogs_api.Model;
using skydiveLogs_api.Data.Interface;
using System.Security.Cryptography;
using System.Text;
using System.IO;
using System;
namespace skydiveLogs_api.Business
{
@@ -17,16 +17,44 @@ namespace skydiveLogs_api.Business
public User GetByLogin(string login, string password)
{
var tmp = _userRepository.GetByLogin(login, password);
var tmp = _userRepository.GetByLogin(login, EncryptPassword(password));
return tmp;
}
public void AddNewUser(User newUser)
{
newUser.Password = EncryptPassword(newUser.Password);
_userRepository.Add(newUser);
}
private string EncryptPassword(string password)
{
var encryptionKey = "skydivelogsangular"; //we can change the code converstion key as per our requirement
byte[] clearBytes = Encoding.Unicode.GetBytes(password);
var encryptedPassword = string.Empty;
using (Aes encryptor = Aes.Create())
{
Rfc2898DeriveBytes pdb = new Rfc2898DeriveBytes(encryptionKey,
new byte[] { 0x49, 0x76, 0x61, 0x6e, 0x20, 0x4d, 0x65, 0x64, 0x76, 0x65, 0x64, 0x65, 0x76 });
encryptor.Key = pdb.GetBytes(32);
encryptor.IV = pdb.GetBytes(16);
using (MemoryStream ms = new MemoryStream())
{
using (CryptoStream cs = new CryptoStream(ms, encryptor.CreateEncryptor(), CryptoStreamMode.Write))
{
cs.Write(clearBytes, 0, clearBytes.Length);
cs.Close();
}
encryptedPassword = Convert.ToBase64String(ms.ToArray());
}
}
return encryptedPassword;
}
private readonly IUserRepository _userRepository;
}
}