From b36b6d12339402aee08f98832bd567109c52491c Mon Sep 17 00:00:00 2001 From: Zhi Guan Date: Wed, 15 Feb 2017 16:12:46 +0800 Subject: [PATCH] update README --- README | 94 -------------------------------------------- README.md | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 113 insertions(+), 96 deletions(-) delete mode 100644 README diff --git a/README b/README deleted file mode 100644 index 36e468a0..00000000 --- a/README +++ /dev/null @@ -1,94 +0,0 @@ - - OpenSSL 1.1.0d 26 Jan 2017 - - Copyright (c) 1998-2016 The OpenSSL Project - Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson - All rights reserved. - - DESCRIPTION - ----------- - - The OpenSSL Project is a collaborative effort to develop a robust, - commercial-grade, fully featured, and Open Source toolkit implementing the - Transport Layer Security (TLS) protocols (including SSLv3) as well as a - full-strength general purpose cryptographic library. - - OpenSSL is descended from the SSLeay library developed by Eric A. Young - and Tim J. Hudson. The OpenSSL toolkit is licensed under a dual-license (the - OpenSSL license plus the SSLeay license), which means that you are free to - get and use it for commercial and non-commercial purposes as long as you - fulfill the conditions of both licenses. - - OVERVIEW - -------- - - The OpenSSL toolkit includes: - - libssl (with platform specific naming): - Provides the client and server-side implementations for SSLv3 and TLS. - - libcrypto (with platform specific naming): - Provides general cryptographic and X.509 support needed by SSL/TLS but - not logically part of it. - - openssl: - A command line tool that can be used for: - Creation of key parameters - Creation of X.509 certificates, CSRs and CRLs - Calculation of message digests - Encryption and decryption - SSL/TLS client and server tests - Handling of S/MIME signed or encrypted mail - And more... - - INSTALLATION - ------------ - - See the appropriate file: - INSTALL Linux, Unix, Windows, OpenVMS, ... - NOTES.* INSTALL addendums for different platforms - - SUPPORT - ------- - - See the OpenSSL website www.openssl.org for details on how to obtain - commercial technical support. Free community support is available through the - openssl-users email list (see - https://www.openssl.org/community/mailinglists.html for further details). - - If you have any problems with OpenSSL then please take the following steps - first: - - - Download the latest version from the repository - to see if the problem has already been addressed - - Configure with no-asm - - Remove compiler optimisation flags - - If you wish to report a bug then please include the following information - and create an issue on GitHub: - - - OpenSSL version: output of 'openssl version -a' - - Any "Configure" options that you selected during compilation of the - library if applicable (see INSTALL) - - OS Name, Version, Hardware platform - - Compiler Details (name, version) - - Application Details (name, version) - - Problem Description (steps that will reproduce the problem, if known) - - Stack Traceback (if the application dumps core) - - Just because something doesn't work the way you expect does not mean it - is necessarily a bug in OpenSSL. Use the openssl-users email list for this type - of query. - - HOW TO CONTRIBUTE TO OpenSSL - ---------------------------- - - See CONTRIBUTING - - LEGALITIES - ---------- - - A number of nations restrict the use or export of cryptography. If you - are potentially subject to such restrictions you should seek competent - professional legal advice before attempting to develop or distribute - cryptographic code. diff --git a/README.md b/README.md index 80d5db8a..aa843ace 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,115 @@ -# GmSSL +## 关于GmSSL -Please visit http://gmssl.org for documents and more details. +GmSSL是一个开源的密码工具箱,支持SM2/SM3/SM4/SM9等国密(国家商用密码)算法、SM2国密数字证书及基于SM2证书的SSL/TLS安全通信协议,支持国密硬件密码设备,提供符合国密规范的编程接口与命令行工具,可以用于构建PKI/CA、安全通信、数据加密等符合国密标准的安全应用。GmSSL项目是[OpenSSL](https://www.openssl.org)项目的分支,并与OpenSSL保持接口兼容。因此GmSSL可以替代应用中的OpenSSL组件,并使应用自动具备基于国密的安全能力。GmSSL项目采用对商业应用友好的类BSD开源许可证,开源且可以用于闭源的商业应用。GmSSL项目由北京大学[关志](http://infosec.pku.edu.cn/~guanzhi/)副研究员的密码学研究组开发维护,项目源码托管于[GitHub](https://github.com/guanzhi/GmSSL)。自2014年发布以来,GmSSL已经在多个项目和产品中获得部署与应用,并获得2015年度“一铭杯”中国Linux软件大赛二等奖(年度最高奖项)与[开源中国](https://www.oschina.net/p/GmSSL)密码类推荐项目。GmSSL项目的核心目标是通过开源的密码技术推动国内网络空间安全建设。 +## 最新动态 + +- 2017年2月12日 支持完整的密码库Java语言封装[GmSSL-Java-Wrapper](http://gmssl.org/docs/java-api.html) +- 2017年1月18日 更新了项目主页 +- [更多 ...](http://gmssl.org/docs/changelog.html) + +## 国密算法 + +国密算法是国家商用密码算法的简称。自2012年以来,国家密码管理局以《中华人民共和国密码行业标准》的方式,陆续公布了SM2/SM3/SM4等密码算法标准及其应用规范。其中“SM”代表“商密”,即用于商用的、不涉及国家秘密的密码技术。其中SM2为基于椭圆曲线密码的公钥密码算法标准,包含数字签名、密钥交换和公钥加密,用于替换RSA/Diffie-Hellman/ECDSA/ECDH等国际算法;SM3为密码哈希算法,用于替代MD5/SHA-1/SHA-256等国际算法;SM4为分组密码,用于替代DES/AES等国际算法;SM9为基于身份的密码算法,可以替代基于数字证书的PKI/CA体系。通过部署国密算法,可以降低由弱密码和错误实现带来的安全风险和部署PKI/CA带来的开销。 + +## 快速上手 + +快速上手指南介绍GmSSL的编译、安装和`gmssl`命令行工具的基本指令。 + +1. 下载源代码,解压缩至当前工作目录 + + ```sh + $ tar xzvf gmssl-.tar.gz + ``` + +2. 编译与安装 + + Linux平台(其他平台的安装过程见[编译与安装](http://gmssl.org)) + + ```sh + $ ./config + $ make + $ sudo make install + ``` + + 安装之后可以执行`gmssl`命令行工具检查是否成功 + + ```sh + $ gmssl version + GmSSL 1.3.0 - OpenSSL 1.0.2d + ``` + +3. SM4加密文件 + + ```sh + $ gmssl sms4 -e -in -out .sms4 + enter sms4-cbc encryption password: + Verifying - enter sms4-cbc encryption password: + ``` + + 解密 + + ```sh + $ gmssl sms4 -d -in .sms4 + enter sms4-cbc decryption password: + ``` + +4. 生成SM3摘要 + + ``` + $ gmssl sm3 + SM3(yourfile)= 66c7f0f462eeedd9d1f2d46bdc10e4e24167c4875cf2f7a2297da02b8f4ba8e0 + ``` + +5. 生成SM2密钥并签名 + + ```sh + $ gmssl genpkey -algorithm EC -pkeyopt ec_paramgen_curve:sm2p256v1 \ + -pkeyopt ec_param_enc:named_curve -out signkey.pem + $ gmssl pkeyutl -sign -pkeyopt ec_sign_algor:sm2 -inkey signkey.pem \ + -in -out .sig + ``` + + 可以将公钥从`signkey.pem`中导出并发发布给验证签名的一方 + + ```sh + $ gmssl pkey -in signkey.pem -out vrfykey.pem + $ gmssl pkeyutl -verify -pkeyopt ec_sign_algor:sm2 -inkey vrfykey.pem \ + -in -sigfile .sig + ``` + + +## 项目文档 + +- 用户手册 + * [编译与安装](http://gmssl.org/docs/install.html) + * [命令行工具手册](http://gmssl.org/docs/commands.html) + * [GmSSL EVP API](http://gmssl.org/docs/evp-api.html) + * [GmSSL Java API](http://gmssl.org/docs/java-api.html) +- 密码算法 + * [SM1分组密码](http://gmssl.org/docs/sm1.html) + * [SSF33分组密码](http://gmssl.org/docs/ssf33.html) + * [SM2椭圆曲线公钥密码](http://gmssl.org/docs/sm2.html) + * [SM3密码杂凑算法](http://gmssl.org/docs/sm3.html) + * [SM4/SMS4分组密码](http://gmssl.org/docs/sm4.html) + * [SM9基于身份的密码](http://gmssl.org/docs/sm9.html) + * [ZUC序列密码](http://gmssl.org/docs/zuc.html) + * [CPK组合公钥密码](http://gmssl.org/docs/cpk.html) + * [BF-IBE (Boneh-Franklin Identity-Based Encryption)](http://gmssl.org/docs/bfibe.html) + * [BB1-IBE (Boneh-Boyen Identity-Based Encryption)](http://gmssl.org/docs/bb1ibe.html) +- 密码硬件 + * [密码硬件支持](http://gmssl.org/docs/crypto-devices.html) + * [国密SKF密码硬件](http://gmssl.org/docs/skf.html) + * [国密SDF密码硬件](http://gmssl.org/docs/sdf.html) + * [密钥管理服务](http://gmssl.org/docs/keyservice.html) +- 安全协议 + * [SSL/TLS协议](http://gmssl.org/docs/ssl.html) + * [国密SSL VPN协议](http://gmssl.org/docs/sslvpn.html) + * [国密IPSec VPN协议](http://gmssl.org/docs/ipsecvpn.html) +- 开发者 + * [GmSSL编码风格 (Coding Style)](http://gmssl.org/docs/gmssl-coding-style.html) + * [开发路线 (Road Map)](http://gmssl.org/docs/roadmap.html) + * [开源许可证 (GmSSL Licenses)](http://gmssl.org/docs/licenses.html) +- 标准与规范 + * [中华人民共和国密码行业标准](http://gmssl.org/docs/standards.html) + * [国密算法标识OID](http://gmssl.org/docs/oid.html)