1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-12 05:13:58 -05:00
Files
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);
}