1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-10 20:33:58 -05:00
Files
bitwarden/util/seeder/Services/IEncryptionService.cs

8 lines
222 B
C#

namespace Bit.Seeder.Services;
public interface IEncryptionService
{
string HashPassword(string password);
byte[] DeriveKey(string password, string salt);
string EncryptString(string plaintext, byte[] key);
}