About 13,300,000 results
Open links in new tab
  1. java - Where is the Keytool application? - Stack Overflow

    keytool is a tool to manage (public/private) security keys and certificates and store them in a Java KeyStore file (stored_file_name.jks). It is provided with any standard JDK / JRE distributions.

  2. android - How can I find and run the keytool - Stack Overflow

    Mar 30, 2011 · keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64 I do not know how to find the keytool in order to run it. I …

  3. generate key and certificate using keytool - Stack Overflow

    I want to generate a self signed trusted certificate and a csr and sign the csr with trusted certificate created. I am trying it with keytool. In the first step of creating a trusted certificate us...

  4. How to import a .cer certificate into a java keystore?

    An open source GUI tool is available at keystore-explorer.org KeyStore Explorer KeyStore Explorer is an open source GUI replacement for the Java command-line utilities keytool and …

  5. Generate private and public key file using keytool

    Sep 30, 2015 · I want to know if there is a way to create .key file for (public and private key) using keytool , I understand that we can generate a keystore using below command keytool …

  6. ssl - Import PEM into Java Key Store - Stack Overflow

    Jan 26, 2010 · The former are PKCS #1, the latter PKCS #8; you should be able to use whatever tool you normally use to deal with these (eg., when creating keys with certtool, use --pkcs8).

  7. ERROR:'keytool' is not recognized as an internal or external …

    Jun 2, 2011 · C:\>keytool -list -alias androiddebugkey -keystore .android\debug.keystore -storepass android -keypass android I get this error: 'keytool' is not recognized as an internal or …

  8. batch file - Add password to keytool command - Stack Overflow

    May 2, 2014 · keytool -list -v -keystore "Path/To/My/Key.jks" When I run the bat file I get asked for the password. Is it possible to either put the password in the command e.g. something like - …

  9. Converting a Java Keystore into PEM Format - Stack Overflow

    Mar 17, 2009 · You only need to write code up to Java 1.4 - from Java 5 onwards, keytool and openssl can be combined to perform a two stage conversion from JKS -> PKCS#12 -> PEM. …

  10. How to print the public key of a certificate using keytool?

    Apr 11, 2012 · 2 years later I now realize @VladSankin was just describing how to get the certificate as a precursor to using openssl to extract the public key from it.