1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-28 06:03:40 +00:00

encrypt with org key if needed

This commit is contained in:
Kyle Spearrin
2017-04-20 11:40:39 -04:00
parent 18b2b6f447
commit b136bb74b8
2 changed files with 12 additions and 6 deletions

View File

@@ -10,7 +10,7 @@ namespace Bit.App
{
public static class Extentions
{
public static CipherString Encrypt(this string s)
public static CipherString Encrypt(this string s, string orgId = null)
{
if(s == null)
{
@@ -18,6 +18,12 @@ namespace Bit.App
}
var cryptoService = Resolver.Resolve<ICryptoService>();
if(!string.IsNullOrWhiteSpace(orgId))
{
return cryptoService.Encrypt(s, cryptoService.GetOrgKey(orgId));
}
return cryptoService.Encrypt(s);
}