1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 05:28:15 -05:00
bitwarden/util/seeder/Services/ISeederService.cs
2025-03-13 16:51:40 -06:00

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);
}