Integrating JSS into an existing java project
by Jon Moroney
Hey all,
Sorry if this question has been covered, I did a cursory search and came up with nothing.
I’m trying to integrate the signed JSS jar into my build to be used as a JCE provider for fips compliance and am running into issues. Using the java Security class I’m trying to set the JSS provider as the default security provider
```
Security.insertProviderAt(new JSSProvider() ,1);
```
This works, however when running my test suite I get about a billion errors which all seem to trace back to errors around the default PRNG provider. Ex.
```
Could not initialize class javax.crypto.JceSecurityManager
```
I’ve read that in order to use jss classes directly one needs to initialize the cryptomanager class. Is this necessary if I just want to use jss as a JCE provider? If so, how do I know what arguments to pass into the initialize function?
Thanks,
Jon
6 years, 1 month
No PKI meeting today
by Matthew Harmsen
Everyone,
I have a family emergency, and need to cancel today's meeting.
-- Matt
6 years, 1 month