1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 15:53:44 +00:00

crypto service implementation

This commit is contained in:
Kyle Spearrin
2019-04-08 16:04:41 -04:00
parent 3f5115728b
commit f0eca137ef
6 changed files with 630 additions and 7 deletions

View File

@@ -21,5 +21,6 @@ namespace Bit.Core.Abstractions
Task<byte[]> RsaExtractPublicKeyAsync(byte[] privateKey);
Task<Tuple<byte[], byte[]>> RsaGenerateKeyPairAsync(int length);
Task<byte[]> RandomBytesAsync(int length);
Task<uint> RandomNumberAsync();
}
}