Questions tagged [keytool]

Key and Certificate Management Tool: manages a keystore (database) of cryptographic keys, X.509 certificate chains, and trusted certificates.

Keytool is a key and certificate management utility. It allows users to administer their own public/private key pairs and associated certificates for use in self-authentication (where the user authenticates himself/herself to other users/services) or data integrity and authentication services, using digital signatures. It also allows users to cache the public keys (in the form of certificates) of their communicating peers.

1325 questions
-1
votes
1 answer

sell application source code without Keystore

I have an signed android app currently published in online Markets. I have used always the same keystore for all published app. i want to sell this app source. Such as when Facebook bought Instagram app. what should I do? How buyer publish it…
PersianMan
  • 924
  • 1
  • 12
  • 29
-1
votes
1 answer

JKS file with Password to access Financial Institute's API

I have received a JKS file encrypted with Password from a financial institution. The API uses port 444. When I use the JKS file and password with SoapUI (Preferences -> SSL Settings -> KeyStore [File] + KeyStore Password), I am able to send and…
-1
votes
1 answer

SSL certificate installation on a server side

I am developing a mobile app. I am new to web development. I have DNS on GoDaddy (say app.test.com) and have a server that only has an IP address (say 31.254.42.73). My requests are forwarded from app.test.com to the IP address. I've purchased an…
-1
votes
1 answer

Using Keytool to extract MD5 signature from Android apk

I have the RSA file but I didn't understand how to issue a command line like this: keytool -printcert -file CERT.RSA I mean, where do I write this line? I tried opening Keytool.exe but it opens and closes immediately. Sorry for being so dumb.
Sahar Avr
  • 131
  • 8
-1
votes
1 answer

Ruleset.xml - keytool and certificates

I am trying to understand how keytool work. I have few questions: Question about Keytool: If we use keytool (keygen) using exact same details (DN/password .. etc) on two different machines, will we end up with identical keys? Question about…
Samir
  • 31
  • 2
-1
votes
1 answer

Java application SSLSockets - Authentication

I'm developing a Java application and I need to send a couple strings to the server through a Secure Sockets, i have to use my own certificate generated by a trusted CA The file certificate is myOwnCRT.crt Client InputStream is = new…
darthlitox
  • 77
  • 1
  • 10
-1
votes
1 answer

signing my application using keytool

well i am stuck on this step too $ keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64 Enter keystore password: android please any body explain it
eng sara
  • 21
  • 6
-2
votes
2 answers

ERROR C:\>"Program Files\java\jdk1.5.0_22\bin>keytool -genkey -keystore myStore -keyalg RSA"

I am getting following error when try to run the above command '"Program Files\java\jdk1.5.0_22\bin>keytool -genkey -keystore myStore -keyalgRSA"' is not recognised as an internal or external command,operable program or batch file.
Qaiser Mehmood
  • 975
  • 6
  • 21
  • 33
-2
votes
1 answer

generate csr with entry type: trustedCertEntry

I got two question regarding the Java keytool. Can I generate csr for trustedCertEntry? I also executed this command: keytool -certreq -alias mydomain -keystore keystore.jks -file mydomain.csr for a trustedCertEntry but I get error: keytool error:…
MC123
  • 1
  • 2
-2
votes
1 answer

keytool is not recognized as an internal/external command, operable program or batch file

When i use a command keytool -genkey -v -keystore MY-RELEASE-KEY.keystore -alias MY_ALIAS_NAME -keyalg RSA -keysize 2048 -validity 10000 I get error like this 'keytool' is not recognized as an internal or external command, operable program or batch…
adrian
  • 21
  • 1
  • 2
  • 4
-2
votes
1 answer

Keytool generate version 3 certificates

Is there way to make keytool generate version 3 certificates? I'm following this tutorial Tutorial and in the end i have version 1 certificates. But then in my application i get exception that is caused by : Caused by:…
David S.
  • 292
  • 1
  • 19
-2
votes
1 answer

keytool to generate keystore for android APK not working

When I generate a private key (for signing apps) using this command: keytool -genkey -v -keystore myappname.keystore -alias myappname -keyalg RSA -keysize 2048 -validity 10000 ... I get asked a series of questions by keytool: What is your first and…
Luis Valencia
  • 32,619
  • 93
  • 286
  • 506
-2
votes
1 answer

Unable to find the keystore created by a jar file

I have created a program that creates a keystore. When I run this code on IDE, it runs perfectly. However, when I run the jar file - I get no errors but cannot find the keystore created. Some additional info - The jar file has been created in the…
-2
votes
1 answer

Regarding keytool

keytool command is supposed to generate public-private key pairs. I use the following command to generate the public-private key pair: keytool -genkey -alias test -keystore test keystore -validity 1000 If I open and see the keystore , I see the…
user3276247
  • 1,046
  • 2
  • 9
  • 24
-2
votes
1 answer

copying all the certificates from keystore to a temp directory explicitly

I have one certificates installed in java and I can execute this command under the JRE security director: keytool -list -keystore cacerts That gives me the list of installed certificates, now what i am trying is that all the certificates that…
1 2 3
88
89