mirror of
https://github.com/bitwarden/server.git
synced 2025-05-04 03:02:18 -05:00
8 lines
222 B
C#
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);
|
|
} |