1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00
bitwarden/util/Seeder/Services/ISeederService.cs

10 lines
353 B
C#

namespace Bit.Seeder.Services;
public interface ISeederService
{
Task GenerateSeedsAsync(int userCount, int ciphersPerUser, string seedName);
Task LoadSeedsAsync(string seedName, string? timestamp = null);
Task GenerateAndLoadSeedsAsync(int userCount, int ciphersPerUser, string seedName);
Task ExtractSeedsAsync(string seedName);
}