mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
ea7ecb6644
This new module implement the SM2 public key algorithm. It was published by State Encryption Management Bureau, China. List of specifications for SM2 elliptic curve public key cryptography: * GM/T 0003.1-2012 * GM/T 0003.2-2012 * GM/T 0003.3-2012 * GM/T 0003.4-2012 * GM/T 0003.5-2012 IETF: https://tools.ietf.org/html/draft-shen-sm2-ecdsa-02 oscca: http://www.oscca.gov.cn/sca/xxgk/2010-12/17/content_1002386.shtml scctc: http://www.gmbz.org.cn/main/bzlb.html Signed-off-by: Tianjia Zhang <tianjia.zhang@linux.alibaba.com> Tested-by: Xufeng Zhang <yunbo.xufeng@linux.alibaba.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
26 lines
749 B
C
26 lines
749 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* sm2.h - SM2 asymmetric public-key algorithm
|
|
* as specified by OSCCA GM/T 0003.1-2012 -- 0003.5-2012 SM2 and
|
|
* described at https://tools.ietf.org/html/draft-shen-sm2-ecdsa-02
|
|
*
|
|
* Copyright (c) 2020, Alibaba Group.
|
|
* Written by Tianjia Zhang <tianjia.zhang@linux.alibaba.com>
|
|
*/
|
|
|
|
#ifndef _CRYPTO_SM2_H
|
|
#define _CRYPTO_SM2_H
|
|
|
|
#include <crypto/sm3.h>
|
|
#include <crypto/akcipher.h>
|
|
|
|
/* The default user id as specified in GM/T 0009-2012 */
|
|
#define SM2_DEFAULT_USERID "1234567812345678"
|
|
#define SM2_DEFAULT_USERID_LEN 16
|
|
|
|
extern int sm2_compute_z_digest(struct crypto_akcipher *tfm,
|
|
const unsigned char *id, size_t id_len,
|
|
unsigned char dgst[SM3_DIGEST_SIZE]);
|
|
|
|
#endif /* _CRYPTO_SM2_H */
|