13 lines
535 B
C#
13 lines
535 B
C#
namespace EnvelopeGenerator.Application.Contracts
|
|
{
|
|
public interface ICodeGenerator
|
|
{
|
|
string GenerateCode(int length);
|
|
|
|
public string GenerateTotpSecretKey(int? length = null);
|
|
|
|
public byte[] GenerateTotpQrCode(string userEmail, string secretKey, string? issuer = null, string? totpUrlFormat = null, int? pixelsPerModule = null);
|
|
|
|
public byte[] GenerateTotpQrCode(string userEmail, int? length = null, string? issuer = null, string? totpUrlFormat = null, int? pixelsPerModule = null);
|
|
}
|
|
} |