1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-08-10 20:23:27 +02:00

revert back to KeyPairGeneratorSpec

KeyGenParameterSpec crashes
This commit is contained in:
Kyle Spearrin 2017-06-02 21:58:20 -04:00
parent 5347624455
commit 8719b3eb64

View File

@ -102,11 +102,12 @@ namespace Bit.Android.Services
end.Add(CalendarField.Year, 30);
var gen = KeyPairGenerator.GetInstance(KeyProperties.KeyAlgorithmRsa, AndroidKeyStore);
var spec = new KeyGenParameterSpec.Builder(KeyAlias, KeyStorePurpose.Encrypt | KeyStorePurpose.Decrypt)
.SetCertificateSubject(new X500Principal($"CN={KeyAlias}"))
.SetCertificateSerialNumber(BigInteger.Ten)
.SetKeyValidityStart(start.Time)
.SetKeyValidityEnd(end.Time)
var spec = new KeyPairGeneratorSpec.Builder(Application.Context)
.SetAlias(KeyAlias)
.SetSubject(new X500Principal($"CN={KeyAlias}"))
.SetSerialNumber(BigInteger.Ten)
.SetStartDate(start.Time)
.SetEndDate(end.Time)
.Build();
gen.Initialize(spec);