diff options
author | Matt Caswell <matt@openssl.org> | 2020-09-18 12:10:21 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2020-09-25 11:13:54 +0100 |
commit | a48309cb5c58be8fa310608124925d4729664cf8 (patch) | |
tree | 0328331447bd845d9b7be18f453b98a5353a1110 /doc/man7/EVP_PKEY-SM2.pod | |
parent | bfb56a974d93908b5d6ede39655ece442ff7a755 (diff) | |
download | openssl-new-a48309cb5c58be8fa310608124925d4729664cf8.tar.gz |
Document the provider side SM2 Asymmetric Cipher support
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/12913)
Diffstat (limited to 'doc/man7/EVP_PKEY-SM2.pod')
-rw-r--r-- | doc/man7/EVP_PKEY-SM2.pod | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/doc/man7/EVP_PKEY-SM2.pod b/doc/man7/EVP_PKEY-SM2.pod new file mode 100644 index 0000000000..bb6258c873 --- /dev/null +++ b/doc/man7/EVP_PKEY-SM2.pod @@ -0,0 +1,73 @@ +=pod + +=head1 NAME + +EVP_PKEY-SM2, EVP_KEYMGMT-SM2, SM2 +- EVP_PKEY keytype support for the Chinese SM2 signature and encryption algorithms + +=head1 DESCRIPTION + +The B<SM2> algorithm was first defined by the Chinese national standard GM/T +0003-2012 and was later standardized by ISO as ISO/IEC 14888. B<SM2> is actually +an elliptic curve based algorithm. The current implementation in OpenSSL supports +both signature and encryption schemes via the EVP interface. + +When doing the B<SM2> signature algorithm, it requires a distinguishing identifier +to form the message prefix which is hashed before the real message is hashed. + +=head1 NOTES + +B<SM2> signatures can be generated by using the 'DigestSign' series of APIs, for +instance, EVP_DigestSignInit(), EVP_DigestSignUpdate() and EVP_DigestSignFinal(). +Ditto for the verification process by calling the 'DigestVerify' series of APIs. + +Before computing an B<SM2> signature, an B<EVP_PKEY_CTX> needs to be created, +and an B<SM2> ID must be set for it, like this: + + EVP_PKEY_CTX_set1_id(pctx, id, id_len); + +Before calling the EVP_DigestSignInit() or EVP_DigestVerifyInit() functions, +that B<EVP_PKEY_CTX> should be assigned to the B<EVP_MD_CTX>, like this: + + EVP_MD_CTX_set_pkey_ctx(mctx, pctx); + +There is normally no need to pass a B<pctx> parameter to EVP_DigestSignInit() +or EVP_DigestVerifyInit() in such a scenario. + +SM2 can be tested with the L<openssl-speed(1)> application since version 3.0. +Currently, the only valid algorithm name is B<sm2>. + +=head1 EXAMPLES + +This example demonstrates the calling sequence for using an B<EVP_PKEY> to verify +a message with the SM2 signature algorithm and the SM3 hash algorithm: + + #include <openssl/evp.h> + + /* obtain an EVP_PKEY using whatever methods... */ + mctx = EVP_MD_CTX_new(); + pctx = EVP_PKEY_CTX_new(pkey, NULL); + EVP_PKEY_CTX_set1_id(pctx, id, id_len); + EVP_MD_CTX_set_pkey_ctx(mctx, pctx); + EVP_DigestVerifyInit(mctx, NULL, EVP_sm3(), NULL, pkey); + EVP_DigestVerifyUpdate(mctx, msg, msg_len); + EVP_DigestVerifyFinal(mctx, sig, sig_len) + +=head1 SEE ALSO + +L<EVP_PKEY_CTX_new(3)>, +L<EVP_DigestSignInit(3)>, +L<EVP_DigestVerifyInit(3)>, +L<EVP_PKEY_CTX_set1_id(3)>, +L<EVP_MD_CTX_set_pkey_ctx(3)> + +=head1 COPYRIGHT + +Copyright 2018-2020 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the Apache License 2.0 (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +L<https://www.openssl.org/source/license.html>. + +=cut |