About GmSSL
GmSSL is an open source cryptographic toolkit that provide first level support of Chinese national cryptographic algorithms and protocols which specified in the GM/T serial standards. As a branch of the OpenSSL project, GmSSL provides API level compatibility with OpenSSL and maintains all the functionalities. Existing projects such as Apache web server can be easily ported to GmSSL with minor modification and simple rebuild. Since the first release in late 2014, GmSSL has been selected as one of the six recommended cryptographic projects by Open Source China and the winner of the 2015 Chinese Linux Software Award.
Features
- Support Chinese
- BSD-style license
- Full support of Chinese GM Cryptography Standards
- Support Chinese cryptographic hardwares (HSMs).
- Commercial friendly BSD-style open source license.
Supported Algorithms
- SM3 cryptographic hash function with 256-bit digest length specified in GM/T 0004-2012.
- SM4 block cipher with 128-bit key length and 128-bit block size specified in GM/T 0002-2012.
- SM2 elliptic curve cryptographic schemes including digital signature scheme, public key encryption, (authenticated) key exchange protocol and one recommended 256-bit prime field curve specified in GM/T 0003-2012.
- SM9 pairing-based cryptographic schemes including identity-based digital signature, encryption, (authenticated) key exchange protocol and one 256-bit recommended BN curve, defined in GM/T 0046-2016.
- ZUC stream cipher, 128-EEA3 encryption algorithm and 128-EIA3 integrity algorithm specified in GM/T 0001-2012.
- SM1 and SSF33 block ciphers with 128-bit key length and 128-bit block size without public specification, only provided with chip.
GM/T SSL Protocol
| # | GM/T Name | GmSSL Name | |
|---|---|---|---|
| 1 | ECDHE_SM1_SM3 |
SM2DHE_SM2SIGN_WITH_SM1_SM3 |
{0xe0,0x01} |
| 2 | ECC_SM1_SM3 |
SM2ENC_WITH_SM1_SM3 |
{0xe0,0x03} |
| 3 | IBSDH_SM1_SM3 |
SM9DHE_SM9SIGN_WITH_SM1_SM3 |
{0xe0,0x05} |
| 4 | IBC_SM1_SM3 |
SM9ENC_WITH_SM1_SM3 |
{0xe0,0x07} |
| 5 | RSA_SM1_SM3 |
RSA_WITH_SM1_SM3 |
{0xe0,0x09} |
| 6 | RSA_SM1_SHA1 |
RSA_WITH_SM1_SHA1 |
{0xe0,0x0a} |
| 7 | ECDHE_SM4_SM3 |
SM2DHE_SM2SIGN_WITH_SMS4_SM3 |
{0xe0,0x11} |
| 8 | ECC_SM4_SM3 |
SM2ENC_WITH_SMS4_SM3 |
{0xe0,0x13} |
| 9 | IBSDH_SM4_SM3 |
SM3DHE_SM9SIGN_WITH_SMS4_SM3 |
{0xe0,0x15} |
| 10 | IBC_SM4_SM3 |
SM9ENC_WITH_SMS4_SM3 |
{0xe0,0x17} |
| 11 | RSA_SM4_SM3 |
RSA_WITH_SMS4_SM3 |
{0xe0,0x19} |
| 12 | RSA_SM4_SHA1 |
RSA_WITH_SMS4_SM3 |
{0xe0,0x1a} |
TLS 1.2 cipher suites:
Programming Interfaces
Except for the native C interface and the gmssl command line, GmSSL also provide the following interfaces:
- SKF C API GM/T 0016-2012 Smart token cryptography application interface specification.
- SDF C API GM/T 0018-2012 Interface specifications of cryptography device application.
- SAF C API GM/T 0019-2012 Universal cryptography service interface specification.
- SOF C/Java API GM/T 0020-2012 Certificate application integrated service interface specification.
- Java crypto, X.509 and SSL API through JNI (Java Native Interface).
- Go crypto, X.509 and SSL API through CGO.
Supported Cryptographic Hardwares
- USB-Key through SKF ENGINE and the SKF API.
- PCI-E card through SDF ENGINE and the SDF API.
- GM Instruction sets (SM3/SM4) through GMI ENGINE.
Quick Start
This short guide describes the build, install and typical usage of the gmssl command line tool. Visit http://gmssl.org for more documents.
- Download the source code (GmSSL-master.zip) and uncompress the ZIP file.
- Compile and install on Linux and Mac OS X
$ ./config
$ make
$ sudo make install
Compile and install on Windows
> perl Configure VC-WIN32
> nmake
> nmake install
After installation, you can run gmssl version -a to print the detailed information of gmssl.
- Encrypt and decrypt with SM4 and password
$ echo -n abc | gmssl sms4 -out ciphertext.bin
$ gmssl sms4 -d -in ciphertext.sms4
- Generate SM3 digest
$ echo -n abc | gmssl sm3
(stdin)= 66c7f0f462eeedd9d1f2d46bdc10e4e24167c4875cf2f7a2297da02b8f4ba8e0
- Generate SM2 keypair
$ gmssl genpkey -algorithm EC -pkeyopt ec_paramgen_curve:sm2p256v1 -pkeyopt ec_param_enc:named_curve -out skey.pem
$ gmssl pkey -pubout -in skey.pem -out pkey.pem
- Generate SM2 signature (in DER format) and verify
$ gmssl pkeyutl -sign -pkeyopt ec_scheme:sm_scheme -inkey skey.pem -in msg.txt -out msg.sig
$ gmssl pkeyutl -verify -pkeyopt ec_scheme:sm_scheme -pubin -inkey vrfykey.pem -in <yourfile> -sigfile <yourfile>.sig
- Do public key encryption and decryption
$ gmssl pkeyutl -sign -pkeyopt ec_scheme:sm_scheme -inkey skey.pem -in msg.txt -out msg.sig
$ gmssl pkeyutl -verify -pkeyopt ec_scheme:sm_scheme -pubin -inkey vrfykey.pem -in <yourfile> -sigfile <yourfile>.sig
- Generate a self-signed certificate from private key
$ gmssl req -new -x509 -key skey.pem -out cert.pem