A Java KeyStore (JKS) is a repository of security certificates, either authorization certificates or public key certificates - used for instance in SSL encryption.

learn more… | top users | synonyms

0
votes
0answers
28 views

Oracle Service Bus (OSB) service with SSL connection enabled for payments?

I have a task where i need to make proxy service which should send payment through 2-way SSL on WebLogic 10.3.5 (have the keys - tested with curl - working fine). I'm new one to OSB so don't have too ...
0
votes
1answer
36 views

HTTPS (SSL) Request Reading Cert From Keystore Without a Library

I'm looking for some sample code that would read from the JKS and issue an HTTPS request with SSL and it doesn't use a third party library. I've only seen samples using libraries such as Axis.j
-1
votes
0answers
13 views

Converting JKS Keystore to PKCS12

I'm trying to convert a JKS Keystore to PKCS12. I tried using the keytool command: keytool -importkeystore -srckeystore Keystore -srcstoretype JKS -deststoretype PKCS12 -destkeystore ...
0
votes
1answer
8 views

SSL Cert Vendor Change

I am trying to prepare for the switch in the SSL certificate vendors. For the the SSL validation, Our Tomcat web application uses a JKS file created from a DigiCert certificate ( *.cer files). Our ...
1
vote
1answer
41 views

java procedure to accessing https service using jks file

Java code to call a remote web service with JKS file. How to access authorized service using certificate. and added please define java keystore. I am very new these processes. I am getting following ...
0
votes
0answers
71 views

Need help converting P12 certificate into JKS

I need some help converting my .P12 certificate file into a JKS keystore. I've followed the standard commands using Java's keytool utility. However, when I try and use the resulting JKS file to access ...
2
votes
2answers
219 views

Trouble instantiating a JaveKeyStore from file

I'm trying to get an instance of org.apache.ws.security.components.crypto.Merlin using org.apache.ws.security.components.crypto.CryptoFactory specifically the CryptoFactory.getInstance(properties) ...
0
votes
1answer
24 views

How-to generate a JKS keystore Report?

I have been looking for generating a report from a keystore of type JKS. I am looking to see the following details in the report: Alias Name Issued To Validity From Validity To I know, this is ...
0
votes
0answers
948 views

Caused by: java.security.UnrecoverableKeyException: Cannot recover key

I am supplied with a jks keystore named ABCC_client.store. When I import this keystore to cacerts and try connecting it says No such Algorithm error. PFA the stacktrace Caused by: ...
1
vote
1answer
328 views

Unable to import .p12 certificate to cacerts

While importing .p12 to cacerts I'm facing the following issue. First line says alias already exists and then when I try to overwrite it says alias not found. Please help me tackle this issue. ...
2
votes
0answers
339 views

java.io.IOException: failed to decrypt safe contents entry: javax.crypto.BadPaddingException: Given final block not properly padded

I ran the following command to create a JKS file from a PFX file for use in Tomcat: keytool -importkeystore -srckeystore PFX_P12_FILE_NAME -srcstoretype pkcs12 -srcstorepass PFX_P12_FILE -srcalias ...
0
votes
2answers
510 views

Import PKCS7 (Chained Certificate) using KeyTool command to JKS

I have a CA issued CERT in PKCS#7 format. It has certificates (chained) within it. Keytool does not recognize the PKCS7 format. I have tried OpenSSL tool to convert PKCS7 format certificate to PEM ...
0
votes
1answer
442 views

Apache HttpClient 4.2.3 - SSLException: hostname in certificate didn't match

I'm having this big problem and I can't find any answer on google, so I try to write here. I'm developing a web service client. To connect to the web service, I have to create an ssl channel with ...
1
vote
1answer
152 views

Java keystore - How do I know which alias contains the certificate and private key?

I apologize if this has been asked a hundred times or could be solved with a simple google search; I'm running on little sleep and it is, of course, a high priority immediate need. My understanding ...
0
votes
2answers
263 views

Jmeter with multiple keystores

I am trying to determine the best way to reference different keyStore files for my load testing needs. I have different environments with different sets of certificates. One for development and one ...
1
vote
3answers
152 views

Loading a Certificate from a Keystore

I have a Base-64 encoded X.509 (.CER) certificate that is causing a NullPointerException on the below java code. The line causing it is PublicKey pubKey = pubCert.getPublicKey(); Is there a way to ...
0
votes
0answers
91 views

Error Converting from jks to p12

I've seen proposed solutions to my problem on Stack over flow but none of them are working for me. I have a ssl certificate issued from goDaddy that I created to be used with apache. I need to ...
1
vote
0answers
115 views

WS-Security: validating a certificate chain with axis2/rampart

I try to encrypt and signature the communication between a soap server and client written in Java/Axis2. Encryption works but when I deleted the root certificate from the java key store, nothing ...
0
votes
1answer
192 views

Java SSL Connect gets 403 while curl -E succeeds

This question is similar to How to use PEM file to create a SSL socket in Java? however I cannot seem to get the suggested solutions working from that question. I used to be able to connect to a .Net ...
0
votes
1answer
2k views

PFX to JKS keytool conversion: Alias <*> does not exist

I'm trying to convert x.PFX file to x.JKS file using keytool but I am getting following error: keytool error: java.lang.Exception: Alias <2> does not exist Actions that preceded this error ...
3
votes
1answer
366 views

Export private key without keypass from Java Key Store without storepass

I have a JKS keystore without a storepass, which contains a private key without a keypass. I can't use this store and this key to interactively sign using e.g. jarsigner (which does not allow for ...
1
vote
1answer
242 views

Using a single certificate based on aliases from Java Key Store

I have a keystore which has multiple keys and certificates added to it I want to used a certificate based on the aliases from the key store and use it for SSL I tried to set the following System ...
0
votes
2answers
1k views

Tomcat / JKS / Keytool - regenerate private key?

Is it possible to regenerate a private key in a .JKS keystore using keytool or equivalent? I've been supplied with a certificate and a JKS keystore, but on importing the cert it looks like the ...
1
vote
1answer
590 views

Curl cacert to Java HttpClient equivalent

I wonder if I am able to make a connection using curl like the following command, curl --cacert some.pem https://someurl.com/resource How do I convert this to httpclient code? I understands I ...
1
vote
2answers
2k views

How to create Java Key Store (.jks) file with AES encryption

Reading Oracle documentation, I see that by default JKS files are encrypted using PBEWithMD5AndTripleDES. While DES alone makes me feel uneasy, MD5 lights a big red light. I'd like to use ...
0
votes
2answers
389 views

JKS, CER, SignCode issue

Currently, I've got an intresting problem about signing an EXE file using the SignCode tool from Microsoft and a certificate (from GlobalSign)... So, we've bought a new certificate as the current one ...
2
votes
1answer
6k views

How to import a jks certificate in java trust store

How do I import a .jks file into the java security's truststore? All the tutorial I'm seeing is using a ".crt" file. However, I only have the ".jks" file which is also the keystore I generated using ...
1
vote
1answer
637 views

Loading keystore on osx lion from file created with keytool

I have a keystore with a key pair generated by the following command: keytool -genkeypair -v -alias test-agent -keypass test-agent -storepass 123456.ABC -keystore test-agent.keystore -storetype JKS ...
0
votes
1answer
330 views

Import Public key of JKS to Pem and vice-versa

I have a Java Server Which understands .jks format and client which understand .pem . I have generate Server key-pair using keytool and Client key-pair using openssl but for mutual authentication how ...
2
votes
0answers
183 views

keystore expire 1 day with an error: “Keystore was tampered with, or password was incorrect”

I'm dealing with a problem about my keystore. First I developed a secure connection between a java application and a cpp application, using openssl. I worked fine last month but in the past few days, ...
0
votes
0answers
165 views

load keystore in jre7

I have keystore of type "jks". This keystore contains one trust certificate entry. When I try to load this keystore with JRE6, and use it to create a secure connection (with apache http client) ...
4
votes
1answer
719 views

Specification of JKS key store format

I was wondering if there exists an official specification of the JKS key store format used in Java? I'd like to write a converter from/to PKCS#12, but not in Java, so keytool or Java code is not an ...
0
votes
1answer
855 views

PKCS12 to JKS conversion failure

I'm trying to convert a PKCS12 format file to a JKS keystore using the command: keytool -v -importkeystore -trustcacerts -srckeystore cert.p12 -srcstoretype PKCS12 -destkeystore md_keystore.jks ...
3
votes
2answers
3k views

What causes keytool error “Failed to decrypt safe contents entry”?

I am trying to convert a standard PKCS #12 (.p12) key store into a Java JKS key store with this command: keytool -importkeystore -srckeystore keystore.p12 -srcstoretype PKCS12 -deststoretype JKS ...
0
votes
1answer
541 views

Howto configure jks certificate in webservice client in websphere 5

I followed different guide in internet googling without solution. I have in backend layer configured proxy for the stub and for stub endpoint https URL. Using SoapUI and same jks file and proxy all ...
1
vote
1answer
390 views

add property to .jks with keytool

I am generating a .jks with keytool and everything is ok. I am using this command: keytool -import -keystore KEYSTORE.jks -storepass "secret" -file MYCERT.crt The problem is that I don't have any ...
1
vote
1answer
85 views

How to know which private key use to decipher when there is more than one in the keystore

I have a system that receives requests encoded with 2 different public keys and which I have to decipher with the respective private keys that I have in the Java keystore. How can I know which one of ...
4
votes
2answers
784 views

play auto-test with SSL java key store troubles

I am trying to set up Jenkins CI with the Play plugin, which uses play auto-test to run the app. The problem is I've also got SSL as a requirement, but the firephoque java test browser doesn't have ...
1
vote
1answer
387 views

Keystore Alias Null Error

I am trying to configure a product called Hermes for a digital signature. I have a file MyCert.pfx which I specified in its configuration as follows: <component ...
0
votes
1answer
257 views

GKR storetype not working in tomcat

I have a keystore generated with GNU/JAVA and its storetype is GKR. Now the tomcat is not supporting GKR type keystore. Is there any way to rum GKR storetype in tomcat? Or any way to convert GKR ...
3
votes
2answers
482 views

Changing the password of a java keystore programmatically

How do I go about changing the password of a JKS keystore(and all entries in it) from java code?
0
votes
1answer
1k views

one PEM file with private ley and certificate into JKS

I have a JKS keystore in client application and I have been given one PEM file containing both private key and certificate to use for SOAP signature. PEM file looks like this: -----BEGIN RSA PRIVATE ...
0
votes
1answer
222 views

Java EE + JKS vs C#

from .NET 3.5 C# web application we want to connect to Java WebService. There are security checks using JKS certificate. How can we use it / send it in web method call? Thanks.
1
vote
2answers
5k views

How do I import an existing Java keystore (.jks) file into a Java installation?

So, I am having trouble with LDAP. I have an integration test case that hopefully will work out, but it is currently running into LDAPS security issues with the SSL handshake. I am able to connect ...
1
vote
1answer
385 views

How can I use keytool or openssl to generate a signed certificate?

How can I use keytool or openssl to generate a signed certificate?
0
votes
3answers
441 views

Problems when using multiple keys in a jks (ssl)

I have two client pkcs12 keystores. I exported the certs out of both of those and added them to a new jks using keyman. The strange thing is that each keystore seperately works fine, but when i ...
0
votes
2answers
538 views

Attributes reversed in certificate subject and issuer

I am trying to generate X509 certificates with bouncycastle 1.46, with the code below. The issue I have is that when a certificate is written in a JKS and then reread, the DNs are reversed. For ...
3
votes
3answers
4k views

Convert CA-signed JKS keystore to PEM

I have a JKS keystore with certicate signed by CA. I need to export it in PEM format in order to use it with nginx. I need to do it in such a way that it includes the whole chain, so that my client ...
2
votes
1answer
905 views

how s_client present client certificate chain

I am trying to test whether the my certs and server certs works correctly by using openssl s_client. openssl s_client -cert mycert -key mykey -CAfile CA.cert -connect host:name But this tool only ...
2
votes
1answer
1k views

Connect to FTPS server

I write FTPS server, and I have problems with ssl connection after AUTH TLS command. Simple example: try { int ServerPort = 21; ServerSocket FtpExServer = new ServerSocket(ServerPort); ...

1 2