zoukankan      html  css  js  c++  java
  • SSL 通信及 java keystore 工具介绍

    http://www.javacodegeeks.com/2014/07/java-keystore-tutorial.html

    Table Of Contents

    1. Introduction
    2. SSL and how it works
    3. Private Keys
    4. Public Certificates
    5. Root Certificates
    6. Certificate Authorities
    7. Certificate Chain
    8. Keystore using Java keytool
    9. Keystore Commands
    10. Configure SSL using Keystores and Self Signed Certificates on Apache Tomcat

    1. Introduction

    Who of us didn’t visit ebay, amazon to buy anything or his personal bank account to check it. Do you think that those sites are secure enough to put your personal data like (credit card number or bank account number, etc.,)?

    Most of those sites use the Socket Layer (SSL) protocol to secure their Internet applications. SSL allows the data from a client, such as a Web browser, to be encrypted prior to transmission so that someone trying to sniff the data is unable to decipher it.

    Many Java application servers and Web servers support the use of keystores for SSL configuration. If you’re building secure Java programs, learning to build a keystore is the first step.

    2. SSL and how it works

    A HTTP-based SSL connection is always initiated by the client using a URL starting with https:// instead of with http://. At the beginning of an SSL session, an SSL handshake is performed. This handshake produces the cryptographic parameters of the session. A simplified overview of how the SSL handshake is processed is shown in the diagram below.

    Java KeyStore Tutorial_html_m4e1c1e9d

    This is in short how it works:

    1. A browser requests a secure page (usually https://).
    2. The web server sends its public key with its certificate.
    3. The browser checks that the certificate was issued by a trusted party (usually a trusted root CA), that the certificate is still valid and that the certificate is related to the site contacted.
    4. The browser then uses the public key, to encrypt a random symmetric encryption key and sends it to the server with the encrypted URL required as well as other encrypted http data.
    5. The web server decrypts the symmetric encryption key using its private key and uses the symmetric key to decrypt the URL and http data.
    6. The web server sends back the requested html document and http data encrypted with the symmetric key.
    7. The browser decrypts the http data and html document using the symmetric key and displays the information.

    The world of SSL has, essentially, three types of certificates: private keys, public keys (also called public certificates or site certificates), and root certificates.

    3. Private Keys

    The private key contains the identity information of the server, along with a key value. It should keep this key safe and protected by password because it’s used to negotiate the hash during the handshake. It can be used by someone to decrypt the traffic and get your personal information. It like leaving your house key in the door lock.

    4. Public Certificates

    The public certificate (public key) is the portion that is presented to a client, it likes your personal passport when you show in the Airport. The public certificate, tightly associated to the private key, is created from the private key using a Certificate Signing Request (CSR). After you create a private key, you create a CSR, which is sent to your Certificate Authority (CA). The CA returns a signed certificate, which has information about the server identity and about the CA.

    5. Root Certificates

    Root CA Certificate is a CA Certificate which is simply a Self-signed Certificate. This certificate represents a entity which issues certificate and is known as Certificate Authority or the CA such as VeriSign, Thawte, etc.

    6. Certificate Authorities

    Companies who will sign certificates for you such as VeriSign, Thawte, Commodo, GetTrust. Also, many companies and institutions act as their own CA, either by building a complete implementation from scratch, or by using an open source option, such as OpenSSL.

    7. Certificate Chain

    When a server and client establish an SSL connection, a certificate is presented to the client; the client should determine whether to trust this certificate, a process called the certificate chain. The client examines the issuer of a certificate, searches its list of trusted root certificates, and compares the issuer on the presented certificate to the subjects of the trusted certificates.

    If a match is found, the connection proceeds. If not, the Web browsers may pop up a dialog box, warning you that it cannot trust the certificate and offering the option to trust the certificate.

    8. Keystore using Java keytool

    Java Keytool is a key and certificate management utility. It allows users to manage their own public/private key pairs and certificates. Java Keytool stores the keys and certificates in what is called a keystore. It protects private keys with a password.

    Each certificate in a Java keystore is associated with a unique alias. When creating a Java keystore you will first create the .jks file that will initially only contain the private key, then generate a CSR. Then you will import the certificate to the keystore including any root certificates.

    9. Keystore Commands

    Create Keystore, Keys and Certificate Requests

    • Generate a Java keystore and key pair
      keytool -genkey -alias mydomain -keyalg RSA -keystore keystore.jks -storepass password
    • Generate a certificate signing request (CSR) for an existing Java keystore
      keytool -certreq -alias mydomain -keystore keystore.jks -storepass password -file mydomain.csr
    • Generate a keystore and self-signed certificate
      keytool -genkey -keyalg RSA -alias selfsigned -keystore keystore.jks -storepass password -validity 360

    Import Certificates

      • Import a root or intermediate CA certificate to an existing Java keystore
    keytool -import -trustcacerts -alias root -file Thawte.crt -keystore keystore.jks -storepass password
    • Import a signed primary certificate to an existing Java keystore
      keytool -import -trustcacerts -alias mydomain -file mydomain.crt -keystore keystore.jks -storepass password

    Export Certificates

    • Export a certificate from a keystore
      keytool -export -alias mydomain -file mydomain.crt -keystore keystore.jks -storepass password

    Check/List/View Certificates

    • Check a stand-alone certificate
      keytool -printcert -v -file mydomain.crt
    • Check which certificates are in a Java keystore
      keytool -list -v -keystore keystore.jks -storepass password
    • Check a particular keystore entry using an alias
      keytool -list -v -keystore keystore.jks -storepass password -alias mydomain

    Delete Certificates

    • Delete a certificate from a Java Keytool keystore
      keytool -delete -alias mydomain -keystore keystore.jks -storepass password

    Change Passwords

    • Change a Java keystore password
      keytool -storepasswd -new new_storepass -keystore keystore.jks -storepass password
    • Change a private key password
      keytool -keypasswd -alias client -keypass old_password -new new_password -keystore client.jks -storepass password

    10. Configure SSL using Keystores and Self Signed Certificates on Apache Tomcat

    1. Generate new keystore and self-signed certificateusing this command, you will prompt to enter specific information such as user name, organization unit, company and location.
      keytool -genkey -alias tomcat -keyalg RSA -keystore /home/ashraf/Desktop/JavaCodeGeek/keystore.jks -validity 360

      Java KeyStore Tutorial_html_m5d3841d

    2. You can list the certificate details you just created using this command
      keytool -list -keystore /home/ashraf/Desktop/JavaCodeGeek/keystore.jks

      Java KeyStore Tutorial_html_131ca506

    3. Download Tomcat 7
    4. Configure Tomcat’s server to support for SSL or https connection. Adding a connector element in Tomcatconfserver.xml
      <Connector port="8443" maxThreads="150" scheme="https" secure="true" 
      SSLEnabled="true" keystoreFile="/home/ashraf/Desktop/JavaCodeGeek/.keystore" keystorePass="password" clientAuth="false" keyAlias="tomcat" sslProtocol="TLS" />
    5. Start Tomcat and go tohttps://localhost:8443/, you will find the following security issue where the browser will present untrusted error messages. In the case of e-commerce, such error messages result in immediate lack of confidence in the website and organizations risk losing confidence and business from the majority of consumers, that's normal as your certificate isn't signed yet by CA such as Thawte or Verisign who will verify the identity of the requester and issue a signed certificate.

      Java KeyStore Tutorial_html_15195a43

    6. You can click Proceed anyway till you receive you signed certificate.
  • 相关阅读:
    通过使用精简客户端,且不需要安装的客户端,配合PLSQL连接oracle数据库
    JDBC连接
    多线程TCP的socket通信
    基于UDP协议的socket通信
    基于TCP协议的socket通信
    设计模式之单例模式
    设计模式之代理模式
    设计模式之策略模式
    >hibernate-session中的方法
    >hibernate的四种状态
  • 原文地址:https://www.cnblogs.com/welhzh/p/4382981.html
Copyright © 2011-2022 走看看