mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
9 lines
225 B
C#
9 lines
225 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);
|
|
}
|