mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
oaep spec only for "new android"
This commit is contained in:
parent
b157f2085f
commit
b8c7752356
1 changed files with 9 additions and 1 deletions
|
@ -207,8 +207,16 @@ namespace Bit.Android.Services
|
|||
{
|
||||
using(var entry = GetRsaKeyEntry())
|
||||
using(var cipher = Cipher.GetInstance(_rsaMode))
|
||||
{
|
||||
if(_oldAndroid)
|
||||
{
|
||||
cipher.Init(CipherMode.DecryptMode, entry.PrivateKey);
|
||||
}
|
||||
else
|
||||
{
|
||||
cipher.Init(CipherMode.DecryptMode, entry.PrivateKey, OAEPParameterSpec.Default);
|
||||
}
|
||||
|
||||
var plainText = cipher.DoFinal(encData);
|
||||
return plainText;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue