Tagged Questions

Java Cryptographic Extension : a pluggable cryptography framework where various providers can bring the desired functionality

learn more… | top users | synonyms

39
votes
3answers
16k views

Truststore and Keystore Definitions

In Java, what's the difference between a keystore and a truststore?
11
votes
6answers
9k 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 ...
7
votes
5answers
3k 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?
7
votes
5answers
4k 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. ...
5
votes
2answers
873 views

Which JCE providers are FIPS 140-2 compliant?

What Java Cryptography Extension (JCE) providers are FIPS 140-2 compliant? More specifically, does the Sun/Oracle provider qualify?
4
votes
1answer
140 views

Override US_export_policy and local_policy jar for a application

Is it possible to override US_export_policy and local_policy jar through JVM or application arguments?
4
votes
3answers
3k views

How to use Bouncy Castle lightweight API with AES and PBE

I have a block of ciphertext that was created using the JCE algorithim "PBEWithSHA256And256BitAES-CBC-BC". The provider is BouncyCastle. What I'd like to do it decrypt this ciphertext using the ...
4
votes
2answers
2k views

How to read a password encrypted key with java?

I have private key stored in file in PKCS8 DER format and protected by password. What is the easiest way to read it? Here is the code I use to load unencrypted one: InputStream in = new ...
3
votes
1answer
119 views

Java NoClassDefFoundError With SSL Connection

We have an application that uses a JAX-RPC client library and is running on a legacy version of Java (1.4.2) and are receiving the following SSL error: java.lang.NoClassDefFoundError ...
3
votes
3answers
76 views

Checking if Unlimited Cryptography is available

How can I check, in Java code, if the current JVM have unlimited strength cryptography available?
3
votes
2answers
3k views

Trust Store vs Key Store - creating with keytool

I understand that the keystore would usually hold private/public keys and the trust store only public keys (and represents the list of trusted parties you intend to communicate with). Well, that's my ...
3
votes
4answers
103 views

Is there a practical way to determine which JCE crypto providers are in use?

We have configured a Java product to use only FIPS-validated RSA JCE crypto providers. However, the product won't work when only the RSA libraries are listed in java.security. Therefore, something is ...
3
votes
3answers
916 views

What's wrong with IBM's JCE provider?

I have a JCE test that works fine with all Sun JDKs I have tried, but fails with various IBM J9 JDKs (e.g. 1.6.0 build pwi3260sr8-20100409_01(SR8)). The exception below happens when the cipher is ...
3
votes
1answer
354 views

How would I use Maven to install the JCE Unlimited Strength Policy files?

Some code I have requires the JCE unlimited Strength Policy Files. I'd like to add this dependency into the Maven Pom file so the other developers on my team don't have to individually each apply ...
3
votes
4answers
1k 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 ...
2
votes
0answers
103 views

PBKDF2 with bouncycastle in Java

I'm trying to securely store a password in a database and for that I chose to store its hash generated using the PBKDF2 function. I want to do this using the bouncy castle library but I don't know why ...
2
votes
1answer
272 views

JSE strong cryptography for Java 7?

The preview release of Java 7 seems to be missing JCE package for unlimited cryptography strength. Has someone stumbled upon such?
2
votes
2answers
168 views

Java verify Certificate is associated with a Key

I have a Certificate and a PrivateKey that I've received from different places. Given just these two abstract objects, can I verify that the Certificate is associated with, or is the Certificate for ...
2
votes
3answers
2k views

How do we convert a String from PEM to DER format

Have a String being sent from in the below format: -----BEGIN RSA PUBLIC KEY----- MIGHAoGBANAahj75ZIz9nXqW2H83nGcUao4wNyYZ9Z1kiNTUYQl7ob/RBmDzs5rY ...
2
votes
2answers
2k views

InvalidKeyException Illegal key size

I have a test which runs great on my development MacBook Pro, but fails to run in continuous integration TeamCity server. The error is following: java.security.InvalidKeyException: Illegal key size ...
2
votes
1answer
887 views

Password based encryption using AES in java 5 (JCE only)

I would like to use AES (192 or 256 bits), but am stuck on how to generate a key from a user supplied password. I have gone through this thread, and am able to run the program in Java 6. However, I ...
2
votes
1answer
462 views

StackOverFlowError while creating Mac object on AS400/Java

I am a newbie to AS400-Java programming. I am trying to create my first program to test the implementation of Message Authentication Code (MAC). I am trying to use the HMACSHA1 hash function. My (Java ...
2
votes
1answer
1k views

NoSuchAlgorithmException: Algorithm HmacSHA1 not available

Look at the following line of java: Mac.getInstance("HmacSHA1"); If I put this in a simple test program, it runs without problems on my server. However, if I use this line in a container, I get ...
2
votes
1answer
241 views

RSA public key exportation

Dear all, Here is my code KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA"); KeyPair myPair = kpg.generateKeyPair(); PrivateKey k = myPair.getPrivate(); ...
2
votes
2answers
901 views

S/MIME in Java without JCE

I'm trying to write an applet that would sign e-mail with S/MIME. Obviously I want to make one small jar with only the required stuff. Obviously the Java way of doing that involves having a huge ...
2
votes
1answer
383 views

What's the Java JCE equivalent for this C OpenSSL encryption function?

I am writing a Java implementation of an app originally written in C. I can't modify the C version, and the Java version must share encrypted data with the C version. Here's the relevant part of the ...
2
votes
2answers
425 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 ...
2
votes
4answers
2k views

Dazed and confused by Java Security & BouncyCastle APIs

I've been trying to make sense of the BouncyCastle cryptography APIs for Java. Unfortunately, I'm finding Java cryptography in general to be so obscured by service provider interfaces and jargon that ...
1
vote
1answer
131 views

Java encryption by client and decryption by server, using PBKDF2WithHmacSHA1 and AES/CBC/PKCS5Padding

I'm going for secure confidentiality as long as the private key stays secret, and I get following error in my app when decrypting: javax.crypto.BadPaddingException: Given final block not properly ...
1
vote
1answer
46 views

joomla jce flash button is missing

I have installed the jce 1.5 and mediabox to enable the admin to insert the flash videos by uploading the swf files or by browsing the url from the youtube I have enabled the mediabox plugin but I ...
1
vote
1answer
102 views

Using CipherOutputStream in Java

I'm trying to use an AES cipher to encrypt some bytes but it's returning a silent error, meaning I enter something like: byte[] raw = new String("Test","UTF8").getBytes("UTF8"); and it won't return ...
1
vote
2answers
180 views

Java implementations of TSP, OCSP and CMS

I'm trying to understand java APIs for digital signatures. I should use custom cryptoprovider to compose digital signature. I know how to sign document and get detached signature using this CSP, now I ...
1
vote
1answer
111 views

How to create your own security provider with some crypto algorithm?

Using official tutorial i understood the main principles of Java Cryptography Architecture. But neither the officials nor internet gives me anything distinct about creating my own provider and ...
1
vote
1answer
47 views

Library / code for trapdoor hashes?

has anyone experience with trapdoor hashes? I was looking for some code example or a Java library which I could use. Or is there a way to create those hashes with the given tools, e.g. JCE? Kind ...
1
vote
2answers
159 views

Verify signature using elliptic curve cryptography

I need to verify a signature of a message which contains several values. The only parameters I have are the signature, the public key and the values itself. The algorithm used for creating the ...
1
vote
0answers
82 views

Workaround on JCE can't authenticate the provider

I'm running a set of tests on my custom JCE provider implemention (XYZProvider). Most of my tests are failing with the following error:- java.lang.SecurityException: JCE cannot authenticate the ...
1
vote
1answer
197 views

Generating a BKS keystore and storing app key

I am supposed to create a BKS keystore and store a private Application key which is a 48 character long string in this Keystore. I also have a JCEKS keystore which has this key value already in it. If ...
1
vote
2answers
499 views

TinyMCE (JCE) How to prevent the plugin from cleaning up the code?

I am using JCE, and I've set everything about code cleanup (in configuration) to OFF. The editor is fixing it anyway. Here's an example: <span class="inset-right"> <h3>TOC</h3> ...
1
vote
1answer
166 views

Writing an Encryption Algorithm in JCE

I have a question regarding JCE encryption. How do you write your own encryption algorithm/secret key generator in Java that can be installed as a .jar file in the ext directory? I have the basic ...
1
vote
2answers
384 views

How to convert a PKCS#8 encoded RSA key into PKCS#1 in Java?

Is it possible to convert a PKCS#8 encoded RSA private key into PKCS#1? I know this can be done easily via openssl, but can it be done in Java?
1
vote
1answer
732 views

Java JCE Unlimited strength encryption security policy files

Are the JCE policy files (in {java.home}/lib/security) overwritten with the standard strength policy files after a JRE update? or are these left alone on JRE update? EDIT: Does anyone know if the Mac ...
1
vote
2answers
258 views

Error: package com.sun.crypto.provider does not exist after upgrade to Java 1.6

I have recently upgraded an existing java project from java 1.4 to 1.6 and it fails to compile due to the error: package com.sun.crypto.provider does not exist. I realise that I'm missing a library ...
1
vote
1answer
35 views

what is the alternative for PROVIDER CLASS to use in j2me

can anyone please tell me how to use jce in j2me
1
vote
2answers
321 views

Digitally signing a web-http response in Java (using pgp)

I am trying to digitally sign an http - web response. Essentially, I create the HTML and multipart content-type response, sign the response then append the digital signature to the response. I think ...
1
vote
4answers
2k views

3DES/DES encryption using the JCE - generating an acceptable key

I'm working on a project that requires 3DES encryption in Java. The issue is that I've been (and will continue to be) supplied with a 128-bit hex key like "0123456789ABCDEF0123456789ABCDEF". ...
1
vote
1answer
547 views

Encrypt with PHP and Decrypt with Java

I have to write a program to decrypt a message using JAVA. The message is encrypted using Triple DES / ECB implemented in PHP. I have tried a few different settings on the algorithm, mode, and padding ...
1
vote
3answers
629 views

Reimplement AES encryption using third-party Java library without US law limitations

I've implemented AES encryption with certain task-specific parameters using standard Java tools and BouncyCastle provider for specific AES algorithm. Here is the code: private byte[] ...
1
vote
1answer
6k views

Why java.security.NoSuchProviderException No such provider: BC?

The jar (bcprov-jdk16-145.jar) has been added to the project, Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider()) has been added to the class, and ...
1
vote
1answer
381 views

Generate one-time key with AES in Counter mode

How to generate one-time key in AES counter mode using java cryptography? I want to use that one-time key as session key in my PGP implementation?
1
vote
2answers
886 views

Implementation of ECC in Java

While trying to encrypt a given input using Elliptic Curve Cryptography in Java I'm using the following algorithms for generating the cipher and the key: KeyPairGenerator g = ...

1 2 3