java秘钥、证书管理工具-keytool

[TOC]

1 简介

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.
A certificate is a digitally signed statement from one entity (person, company, etc.), saying that the public key (and some other information) of some other entity has a particular value. (See Certificates.) When data is digitally signed, the signature can be verified to check the data integrity and authenticity. Integrity means that the data has not been modified or tampered with, and authenticity means the data indeed comes from whoever claims to have created and signed it.

keytool also enables users to administer secret keys used in symmetric encryption/decryption (e.g. DES).

keytool stores the keys and certificates in a keystore.

通过以上官方文档中的一部分内容,我们可以了解到:

  • keytool是一个秘钥和证书的管理工具
  • keytool可以用于管理对称加密和非对称加密
  • keytool将秘钥和证书存储在keystore中

2 命令格式

2.1 几点说明

  • 所有的命令和选项都以减号(-)打头
  • 命令的选项可以以任意的位置出现
  • 选项的值中如果有空白字符,必须用引号引起来
  • -help命令是默认的命令,所以keytoolkeytool -help是一样的

2.2 命令列表

[root@hylexus ~]# keytool 
Key and Certificate Management Tool

Commands:

 -certreq            Generates a certificate request
 -changealias        Changes an entry's alias
 -delete             Deletes an entry
 -exportcert         Exports certificate
 -genkeypair         Generates a key pair
 -genseckey          Generates a secret key
 -gencert            Generates certificate from a certificate request
 -importcert         Imports a certificate or a certificate chain
 -importpass         Imports a password
 -importkeystore     Imports one or all entries from another keystore
 -keypasswd          Changes the key password of an entry
 -list               Lists entries in a keystore
 -printcert          Prints the content of a certificate
 -printcertreq       Prints the content of a certificate request
 -printcrl           Prints the content of a CRL file
 -storepasswd        Changes the store password of a keystore

Use "keytool -command_name -help" for usage of command_name

2.3 一些选项的默认值

  • -alias "mykey"
  • -keyalg
    • "DSA" (使用 -genkeypair的时候)
    • "DES" (使用 -genseckey)的时候
  • -keysize
    • 1024(当使用 -genkeypair的时候)
    • 56 (当使用 -genseckey 并且 -keyalg 为 "DES"的时候)
    • 168 (当使用 -genseckey 并且 -keyalg 为 "DESede"的时候)
  • -validity 90
  • -keystore 用户家目录下名为.keystore的文件
  • -file
    • 读的时候为stdin
    • 写的时候为stdout
  • -protected false

3 使用示例

3.1 生成秘钥对儿/自签署证书

创建密钥对的时候,同时就创建了一个自签署的证书

keytool -genkeypair -alias tomcat -keyalg rsa -keysize 2048 -validity 365 -keystore /soft/tomcat7-80/conf/keystore

解释如下:

keytool \
    -genkeypair \ # 生成秘钥对儿
    -alias tomcat \ # 名称
    -keyalg rsa \ # 算法名称
    -keysize 2048 \# 长度
    -validity 365 \# 有效期
    -keystore /soft/tomcat7-80/conf/keystore # 存储位置

3.2 生成CSR

CSR即Certificate Signing Request,证书颁发请求。

keytool -certreq -keyalg rsa -alias tomcat -file /soft/tomcat7-80/conf/tomcat.csr -keystore /soft/tomcat7-80/conf/keystore

解释如下:

keytool -certreq \ # 创建CSR命令
    -keyalg rsa \ # 加密算法
    -alias tomcat \ #在可以store中存储的别名
    -file /soft/tomcat7-80/conf/tomcat.csr \ # 输出文件位置
     #指定keystore的位置,默认为用户家目录下的.keystore文件
    -keystore /soft/tomcat7-80/conf/keystore 

3.3 导出证书

keytool -exportcert -file /soft/tomcat7-80/conf/server.crt -alias tomcat -keystore /soft/tomcat7-80/conf/keystore

解释如下:

keytool -exportcert \ 导出命令
    # 导出到哪里?
    -file /soft/tomcat7-80/conf/server.crt \
    # 导出哪个?
    -alias tomcat \
    # 从哪个keystore中导出?默认为用户家目录~/.keystore文件
    -keystore /soft/tomcat7-80/conf/keystore

3.4 导入证书

keytool -importcert -file /soft/tomcat7-80/conf/server.crt -alias myCA -keystore /soft/tomcat7-80/conf/keystore -trustcacerts

解释如下:

keytool -importcert \ # 导入命令
    # 从哪里导入?
    -file /soft/tomcat7-80/conf/server.crt \
    # 起别名
    -alias myCA \
    # 使用哪个keystore?
    -keystore /soft/tomcat7-80/conf/keystore \
    -trustcacerts

3.5 列出keystore中存储的内容

keytool -list

keytool -list -keystore /soft/tomcat7-80/conf/keystore 

keytool -list -keystore /soft/tomcat7-80/conf/keystore -alias tomcat

解释如下:

keytool -list \ # list命令
    # 使用哪个keystore?
    -keystore /soft/tomcat7-80/conf/keystore 

3.6 导入现成的私钥和证书到keystore

看看这个来自stackoverflow的截图:

stackoverflow

貌似keytool并不提供或说是不直接提供方法导入私钥。

不过可以绕绕,最终借助于openssl来解决:

http://stackoverflow.com/questions/906402/importing-an-existing-x509-certificate-and-private-key-in-java-keystore-to-use-i

http://stackoverflow.com/questions/17695297/importing-the-private-key-public-certificate-pair-in-the-java-keystore

http://cunning.sharp.fm/2008/06/importing_private_keys_into_a.html

来自stackoverflow的解决方案

# Create PKCS12 keystore from private key and public certificate.
openssl pkcs12 -export -name myservercert -in selfsigned.crt -inkey server.key -out keystore.p12

# Convert PKCS12 keystore into a JKS keystore
keytool -importkeystore -destkeystore mykeystore.jks -srckeystore keystore.p12 -srcstoretype pkcs12 -alias myservercert

以后有时间在补齐其他命令的使用吧……

参考文章

http://stackoverflow.com/questions/906402/importing-an-existing-x509-certificate-and-private-key-in-java-keystore-to-use-i
http://cunning.sharp.fm/2008/06/importing_private_keys_into_a.html
http://stackoverflow.com/questions/17695297/importing-the-private-key-public-certificate-pair-in-the-java-keystore

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,530评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,403评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,120评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,770评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,758评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,649评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,021评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,675评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,931评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,751评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,410评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,004评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,969评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,042评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,493评论 2 343

推荐阅读更多精彩内容