1
vote
3answers
60 views
How to sign a custom JCE security provider
Sun's PKCS11 JCE security provider is lacking some functionality we need.
So I wrote an enhanced version of it using the original sources.
Unfortunately the JCE infrastructure rejects the new …
0
votes
0answers
30 views
TinyMCE/JCE on a split-site Joomla
Dear All
I have split a Joomla installation across two servers (one for dynamic content, one for static) and I'm having trouble with the wysiwyg editor TinyMCE/JCE. Can anyone offer any guidance?
…
0
votes
1answer
1k views
Java/JCE: Decrypting “long” message encrypted with RSA
I've got a message contained in an byte[], encrypted with "RSA/ECB/PKCS1Padding". To decrypt it I create a Cipher c and initiate it with
c = Cipher.getInstance("RSA/ECB/PKCS1Padding");
Untill now I …
0
votes
2answers
107 views
Can’t get JCE working on front-end
I've gone through all the tutorials and read through a ton of forum posts, but to no avail. I cannot get JCE to work properly on the front-end of my Joomla project. I have the group settings to allow …
0
votes
1answer
192 views
Using Sun JCE provider on top of IBM SDK
Hi,
I need to use Sun JCE provider in an application that is running on IBM Websphere. This can be achieved by specifying the security_provider.1=com.sun.crypto.provider.SunJCE.
Some parts of my …
0
votes
0answers
30 views
Signing message with certificate: JCE, IAIK or similar in IBM SDK 5.0
So, I'm in a very difficult problem.
Using Java:
I've an enterprise certificate (in .p12 format) altogether with its public key ("password" string). Also I've a text message which I've to sign in …
2
votes
2answers
212 views
Creating an X509 Certificate in Java without BouncyCastle?
Is it possible to sanely create an X509 Certificate in Java code without using the Bouncy Castle X509V*CertificateGenerator classes?
1
vote
2answers
1k views
Truststore and Keystore Definitions
In Java, what's the difference between a keystore and a truststore?
0
votes
3answers
102 views
Get REAL X.509 data from RFC1421 formatted certificate.
We have a Java application that stores RSA public keys and allows a user to encrypt a short stream of information with any of the keys. The application also allows the user to import a new key …
4
votes
4answers
568 views
“Unlimited Strength” JCE Policy Files
I have an app that uses 256-bit AES encryption which is not supported by Java out of the box. I know to get this to function correctly I install the JCE unlimited strength jars in the security folder. …
0
votes
1answer
59 views
Is JCE needed if you have LDAP?
Do you need to have JCE embedded in your java application when you already have LDAP authentication in place.
0
votes
0answers
145 views
JCE problem in Lotus Expeditor (IBM’s custom Eclipse runtime)
I'm trying to authenticate to Google Apps using the GData client library. I've imported the needed jars and dependencies from the library into my Eclipse environment and verified that test code that …
0
votes
4answers
255 views
Identity-Based Encryption and Open Source
I recently ran across the notion of Identity Based Encryption (IBE) which seems like a novel idea. However, I haven't noticed many in the cryptography community attempting to find ways to break it. Am …
1
vote
2answers
163 views
Are there any other open source JCE libraries besides BouncyCastle?
I am looking for open source JCE libraries that implement some of the more esoteric encryption algorithms so that I can study their implementation. I would be especially interested in ones that …
3
votes
6answers
2k views
Where to find Java 6 JSSE/JCE Source Code?
Where can I download the JSSE and JCE source code for the latest release of Java? The source build available at https://jdk6.dev.java.net/ does not include the javax.crypto (JCE) packages nor the …
