mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
17 lines
488 B
C#
17 lines
488 B
C#
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IPasswordGenerationService
|
|
{
|
|
string GeneratePassword(
|
|
int? length = null,
|
|
bool? uppercase = null,
|
|
bool? lowercase = null,
|
|
bool? numbers = null,
|
|
bool? special = null,
|
|
bool? ambiguous = null,
|
|
int? minUppercase = null,
|
|
int? minLowercase = null,
|
|
int? minNumbers = null,
|
|
int? minSpecial = null);
|
|
}
|
|
}
|