зеркало из https://github.com/mozilla/gecko-dev.git
Fix the secure random provider for the DSAME folks
This commit is contained in:
Родитель
fcc917f873
Коммит
efed69eb89
|
@ -38,8 +38,9 @@ public class PKCS11SecureRandom extends java.security.SecureRandomSpi {
|
||||||
|
|
||||||
JSSSecureRandom engine;
|
JSSSecureRandom engine;
|
||||||
|
|
||||||
PKCS11SecureRandom() {
|
public PKCS11SecureRandom() {
|
||||||
super();
|
super();
|
||||||
|
System.out.println("In PKCS11SecureRandom constructor");
|
||||||
engine = TokenSupplierManager.getTokenSupplier().getSecureRNG();
|
engine = TokenSupplierManager.getTokenSupplier().getSecureRNG();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -76,7 +76,7 @@ public class Provider extends java.security.Provider {
|
||||||
/////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////
|
||||||
// SecureRandom
|
// SecureRandom
|
||||||
/////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////
|
||||||
put("mozilla.pkcs11.prng",
|
put("SecureRandom.pkcs11prng",
|
||||||
"org.mozilla.jss.provider.PKCS11SecureRandom");
|
"org.mozilla.jss.provider.PKCS11SecureRandom");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче