1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-07 11:03:54 +00:00

Password generator page. Password generation service. Tests. Renamed some settings constants.

This commit is contained in:
Kyle Spearrin
2016-07-02 02:01:47 -04:00
parent cd4f1f4c2f
commit 55ed801fe7
17 changed files with 6955 additions and 98 deletions

View File

@@ -0,0 +1,7 @@
namespace Bit.App.Abstractions
{
public interface IPasswordGenerationService
{
string GeneratePassword();
}
}