Search completed in 1.80 seconds.
6 results for "CryptoManager":
JSS FAQ
MozillaProjectsNSSJSSJSS FAQ
yes, domestic is the default because we call nss_setdomesticpolicy() during cryptomanager.initialize().
...upgrade to the latest jss, or, in the cryptomanager.initializationvalues object you pass to cryptomanager.initialize(), set removesunproivider=true.
... cryptomanager.importcertpackage() is it possible to use jss to acces cipher functionality from pkcs11 modules?
...And 2 more matches
JSS Provider Notes
MozillaProjectsNSSJSSJSS Provider Notes
installing the provider in order to use any part of jss, including the jca provider, you must first call cryptomanager.initialize().
...if you do not wish the provider to be installed, create a cryptomanager.initializationvalues object, set its installjssprovider field to false, and pass the initializationvalues object to cryptomanager.initialize().
... in order to use a different token, use cryptomanager.setthreadtoken().
...And 2 more matches
Mozilla-JSS JCA Provider notes
MozillaProjectsNSSJSSMozilla-JSS JCA Provider notes
installing the provider in order to use any part of jss, including the jca provider, you must first call cryptomanager.initialize().
...if you do not wish the provider to be installed, create a cryptomanager.initializationvalues object, set its installjssprovider field to false, and pass the initializationvalues object to cryptomanager.initialize().
...in order to use a different token, use cryptomanager.setthreadtoken().
...And 2 more matches
4.3.1 Release Notes
MozillaProjectsNSSJSS4.3.1 Release Notes
to obtain the version info from the jar file use, "system.out.println(org.mozilla.jss.cryptomanager.jar_jss_version)" and to check the shared library: strings libjss4.so | grep -i header feedback bugs discovered should be reported by filing a bug report with bugzilla.
4.3 Release Notes
MozillaProjectsNSSJSS4 3 ReleaseNotes
to obtain the version info from the jar file use, "system.out.println(org.mozilla.jss.cryptomanager.jar_jss_version)" and to check the shared library: strings libjss4.so | grep -i header feedback bugs discovered should be reported by filing a bug report with bugzilla.
Using JSS
MozillaProjectsNSSJSSUsing JSS
initialize jss in your application before calling any jss methods, you must initialize jss by calling one of the cryptomanager.initialize methods.