mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-07 08:56:17 +08:00
add pairing cryptos
This commit is contained in:
144
include/openssl/bb1ibe.h
Normal file
144
include/openssl/bb1ibe.h
Normal file
@@ -0,0 +1,144 @@
|
||||
/* ====================================================================
|
||||
* Copyright (c) 2016 The GmSSL Project. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
*
|
||||
* 3. All advertising materials mentioning features or use of this
|
||||
* software must display the following acknowledgment:
|
||||
* "This product includes software developed by the GmSSL Project.
|
||||
* (http://gmssl.org/)"
|
||||
*
|
||||
* 4. The name "GmSSL Project" must not be used to endorse or promote
|
||||
* products derived from this software without prior written
|
||||
* permission. For written permission, please contact
|
||||
* guanzhi1980@gmail.com.
|
||||
*
|
||||
* 5. Products derived from this software may not be called "GmSSL"
|
||||
* nor may "GmSSL" appear in their names without prior written
|
||||
* permission of the GmSSL Project.
|
||||
*
|
||||
* 6. Redistributions of any form whatsoever must retain the following
|
||||
* acknowledgment:
|
||||
* "This product includes software developed by the GmSSL Project
|
||||
* (http://gmssl.org/)"
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE GmSSL PROJECT ``AS IS'' AND ANY
|
||||
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GmSSL PROJECT OR
|
||||
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
* ====================================================================
|
||||
*/
|
||||
/*
|
||||
* Boneh-Boyen Identity-Based Encryption (BB1-IBE)
|
||||
* see [RFC 5091](https://tools.ietf.org/html/rfc5091)
|
||||
* Identity-Based Cryptography Standard (IBCS) #1:
|
||||
* Supersingular Curve Implementations of the BF and BB1 Cryptosystems
|
||||
*/
|
||||
|
||||
#ifndef HEADER_BB1IBE_H
|
||||
#define HEADER_BB1IBE_H
|
||||
|
||||
#include <string.h>
|
||||
#include <openssl/bn.h>
|
||||
#include <openssl/ec.h>
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/asn1.h>
|
||||
#include <openssl/fppoint.h>
|
||||
|
||||
#define BB1IBE_VERSION 2
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
typedef struct BB1PublicParameters_st BB1PublicParameters;
|
||||
typedef struct BB1MasterSecret_st BB1MasterSecret;
|
||||
typedef struct BB1PrivateKeyBlock_st BB1PrivateKeyBlock;
|
||||
typedef struct BB1CiphertextBlock_st BB1CiphertextBlock;
|
||||
|
||||
|
||||
int BB1IBE_setup(const EC_GROUP *group, const EVP_MD *md,
|
||||
BB1PublicParameters **mpk, BB1MasterSecret **msk);
|
||||
BB1PrivateKeyBlock *BB1IBE_extract_private_key(BB1PublicParameters *mpk,
|
||||
BB1MasterSecret *msk, const char *id, size_t idlen);
|
||||
BB1CiphertextBlock *BB1IBE_do_encrypt(BB1PublicParameters *mpk,
|
||||
const unsigned char *in, size_t inlen,
|
||||
const char *id, size_t idlen);
|
||||
int BB1IBE_do_decrypt(BB1PublicParameters *mpk,
|
||||
const BB1CiphertextBlock *in, unsigned char *out, size_t *outlen,
|
||||
BB1PrivateKeyBlock *sk);
|
||||
int BB1IBE_encrypt(BB1PublicParameters *mpk,
|
||||
const unsigned char *in, size_t inlen,
|
||||
unsigned char *out, size_t *outlen,
|
||||
const char *id, size_t idlen);
|
||||
int BB1IBE_decrypt(BB1PublicParameters *mpk,
|
||||
const unsigned char *in, size_t inlen,
|
||||
unsigned char *out, size_t *outlen,
|
||||
BB1PrivateKeyBlock *sk);
|
||||
|
||||
DECLARE_ASN1_FUNCTIONS(BB1MasterSecret)
|
||||
DECLARE_ASN1_FUNCTIONS(BB1PublicParameters)
|
||||
DECLARE_ASN1_FUNCTIONS(BB1PrivateKeyBlock)
|
||||
DECLARE_ASN1_FUNCTIONS(BB1CiphertextBlock)
|
||||
|
||||
/* BEGIN ERROR CODES */
|
||||
/*
|
||||
* The following lines are auto generated by the script mkerr.pl. Any changes
|
||||
* made after this point may be overwritten when the script is next run.
|
||||
*/
|
||||
|
||||
int ERR_load_BB1IBE_strings(void);
|
||||
|
||||
/* Error codes for the BB1IBE functions. */
|
||||
|
||||
/* Function codes. */
|
||||
# define BB1IBE_F_BB1CIPHERTEXTBLOCK_HASH_TO_RANGE 100
|
||||
# define BB1IBE_F_BB1IBE_DECRYPT 101
|
||||
# define BB1IBE_F_BB1IBE_DOUBLE_HASH 102
|
||||
# define BB1IBE_F_BB1IBE_DO_DECRYPT 103
|
||||
# define BB1IBE_F_BB1IBE_DO_ENCRYPT 104
|
||||
# define BB1IBE_F_BB1IBE_ENCRYPT 105
|
||||
# define BB1IBE_F_BB1IBE_EXTRACT_PRIVATE_KEY 106
|
||||
# define BB1IBE_F_BB1IBE_SETUP 107
|
||||
|
||||
/* Reason codes. */
|
||||
# define BB1IBE_R_BB1CIPHERTEXT_INVALID_MAC 100
|
||||
# define BB1IBE_R_BB1IBE_HASH_FAILURE 101
|
||||
# define BB1IBE_R_BUFFER_TOO_SMALL 102
|
||||
# define BB1IBE_R_COMPUTE_OUTLEN_FAILURE 103
|
||||
# define BB1IBE_R_COMPUTE_TATE_FAILURE 104
|
||||
# define BB1IBE_R_D2I_FAILURE 105
|
||||
# define BB1IBE_R_DECRYPT_FAILURE 106
|
||||
# define BB1IBE_R_DOUBLE_HASH_FAILURE 107
|
||||
# define BB1IBE_R_ENCRYPT_FAILURE 108
|
||||
# define BB1IBE_R_I2D_FAILURE 109
|
||||
# define BB1IBE_R_INVALID_INPUT 110
|
||||
# define BB1IBE_R_INVALID_MD 111
|
||||
# define BB1IBE_R_INVALID_OUTPUT_BUFFER 112
|
||||
# define BB1IBE_R_INVALID_TYPE1CURVE 113
|
||||
# define BB1IBE_R_NOT_NAMED_CURVE 114
|
||||
# define BB1IBE_R_PARSE_PAIRING 115
|
||||
|
||||
# ifdef __cplusplus
|
||||
}
|
||||
# endif
|
||||
#endif
|
||||
142
include/openssl/bfibe.h
Normal file
142
include/openssl/bfibe.h
Normal file
@@ -0,0 +1,142 @@
|
||||
/* ====================================================================
|
||||
* Copyright (c) 2016 The GmSSL Project. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
*
|
||||
* 3. All advertising materials mentioning features or use of this
|
||||
* software must display the following acknowledgment:
|
||||
* "This product includes software developed by the GmSSL Project.
|
||||
* (http://gmssl.org/)"
|
||||
*
|
||||
* 4. The name "GmSSL Project" must not be used to endorse or promote
|
||||
* products derived from this software without prior written
|
||||
* permission. For written permission, please contact
|
||||
* guanzhi1980@gmail.com.
|
||||
*
|
||||
* 5. Products derived from this software may not be called "GmSSL"
|
||||
* nor may "GmSSL" appear in their names without prior written
|
||||
* permission of the GmSSL Project.
|
||||
*
|
||||
* 6. Redistributions of any form whatsoever must retain the following
|
||||
* acknowledgment:
|
||||
* "This product includes software developed by the GmSSL Project
|
||||
* (http://gmssl.org/)"
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE GmSSL PROJECT ``AS IS'' AND ANY
|
||||
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GmSSL PROJECT OR
|
||||
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
* ====================================================================
|
||||
*/
|
||||
/*
|
||||
* Boneh-Franklin Identity-Based Encryption (BF-IBE)
|
||||
* see [RFC 5091](https://tools.ietf.org/html/rfc5091)
|
||||
* Identity-Based Cryptography Standard (IBCS) #1:
|
||||
* Supersingular Curve Implementations of the BF and BB1 Cryptosystems
|
||||
*/
|
||||
|
||||
#ifndef HEADER_BFIBE_H
|
||||
#define HEADER_BFIBE_H
|
||||
|
||||
#include <string.h>
|
||||
#include <openssl/bn.h>
|
||||
#include <openssl/ec.h>
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/asn1.h>
|
||||
#include <openssl/fppoint.h>
|
||||
|
||||
#define BFIBE_VERSION 2
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct BFPublicParameters_st BFPublicParameters;
|
||||
typedef struct BFMasterSecret_st BFMasterSecret;
|
||||
typedef struct BFPrivateKeyBlock_st BFPrivateKeyBlock;
|
||||
typedef struct BFCiphertextBlock_st BFCiphertextBlock;
|
||||
|
||||
int BFIBE_setup(const EC_GROUP *group, const EVP_MD *md,
|
||||
BFPublicParameters **mpk, BFMasterSecret **msk);
|
||||
BFPrivateKeyBlock *BFIBE_extract_private_key(BFPublicParameters *mpk,
|
||||
BFMasterSecret *msk, const char *id, size_t idlen);
|
||||
BFCiphertextBlock *BFIBE_do_encrypt(BFPublicParameters *mpk,
|
||||
const unsigned char *in, size_t inlen,
|
||||
const char *id, size_t idlen);
|
||||
int BFIBE_do_decrypt(BFPublicParameters *mpk,
|
||||
const BFCiphertextBlock *in,
|
||||
unsigned char *out, size_t *outlen,
|
||||
BFPrivateKeyBlock *sk);
|
||||
int BFIBE_encrypt(BFPublicParameters *mpk,
|
||||
const unsigned char *in, size_t inlen,
|
||||
unsigned char *out, size_t *outlen,
|
||||
const char *id, size_t idlen);
|
||||
int BFIBE_decrypt(BFPublicParameters *mpk,
|
||||
const unsigned char *in, size_t inlen,
|
||||
unsigned char *out, size_t *outlen,
|
||||
BFPrivateKeyBlock *sk);
|
||||
|
||||
DECLARE_ASN1_FUNCTIONS(BFPublicParameters)
|
||||
DECLARE_ASN1_FUNCTIONS(BFMasterSecret)
|
||||
DECLARE_ASN1_FUNCTIONS(BFPrivateKeyBlock)
|
||||
DECLARE_ASN1_FUNCTIONS(BFCiphertextBlock)
|
||||
|
||||
/* BEGIN ERROR CODES */
|
||||
/*
|
||||
* The following lines are auto generated by the script mkerr.pl. Any changes
|
||||
* made after this point may be overwritten when the script is next run.
|
||||
*/
|
||||
|
||||
int ERR_load_BFIBE_strings(void);
|
||||
|
||||
/* Error codes for the BFIBE functions. */
|
||||
|
||||
/* Function codes. */
|
||||
# define BFIBE_F_BFIBE_DECRYPT 100
|
||||
# define BFIBE_F_BFIBE_DO_DECRYPT 101
|
||||
# define BFIBE_F_BFIBE_DO_ENCRYPT 102
|
||||
# define BFIBE_F_BFIBE_ENCRYPT 103
|
||||
# define BFIBE_F_BFIBE_EXTRACT_PRIVATE_KEY 104
|
||||
# define BFIBE_F_BFIBE_SETUP 105
|
||||
|
||||
/* Reason codes. */
|
||||
# define BFIBE_R_BFIBE_CIPHERTEXT_FAILURE 100
|
||||
# define BFIBE_R_BUFFER_TOO_SMALL 101
|
||||
# define BFIBE_R_COMPUTE_OUTLEN_FAILURE 102
|
||||
# define BFIBE_R_D2I_FAILURE 103
|
||||
# define BFIBE_R_DECRYPT_FAILURE 104
|
||||
# define BFIBE_R_ENCRYPT_FAILURE 105
|
||||
# define BFIBE_R_HASH_BYTES_FAILURE 106
|
||||
# define BFIBE_R_I2D_FAILURE 107
|
||||
# define BFIBE_R_INVALID_BFIBE_HASHFUNC 108
|
||||
# define BFIBE_R_INVALID_CIPHERTEXT 109
|
||||
# define BFIBE_R_INVALID_TYPE1CURVE 110
|
||||
# define BFIBE_R_KDF_FAILURE 111
|
||||
# define BFIBE_R_NOT_NAMED_CURVE 112
|
||||
# define BFIBE_R_PARSE_CURVE_FAILURE 113
|
||||
# define BFIBE_R_PARSE_MPK_FAILURE 114
|
||||
# define BFIBE_R_PARSE_PAIRING 115
|
||||
# define BFIBE_R_RAND_FAILURE 116
|
||||
|
||||
# ifdef __cplusplus
|
||||
}
|
||||
# endif
|
||||
#endif
|
||||
@@ -99,6 +99,9 @@ typedef struct err_state_st {
|
||||
# define ERR_LIB_CPK 56
|
||||
# define ERR_LIB_OTP 57
|
||||
# define ERR_LIB_GMAPI 58
|
||||
# define ERR_LIB_BFIBE 59
|
||||
# define ERR_LIB_BB1IBE 60
|
||||
# define ERR_LIB_SM9 61
|
||||
|
||||
# define ERR_LIB_USER 128
|
||||
|
||||
@@ -143,6 +146,9 @@ typedef struct err_state_st {
|
||||
# define CPKerr(f,r) ERR_PUT_error(ERR_LIB_CPK,(f),(r),OPENSSL_FILE,OPENSSL_LINE)
|
||||
# define OTPerr(f,r) ERR_PUT_error(ERR_LIB_OTP,(f),(r),OPENSSL_FILE,OPENSSL_LINE)
|
||||
# define GMAPIerr(f,r) ERR_PUT_error(ERR_LIB_GMAPI,(f),(r),OPENSSL_FILE,OPENSSL_LINE)
|
||||
# define BFIBEerr(f,r) ERR_PUT_error(ERR_LIB_BFIBE,(f),(r),OPENSSL_FILE,OPENSSL_LINE)
|
||||
# define BB1IBEerr(f,r) ERR_PUT_error(ERR_LIB_BB1IBE,(f),(r),OPENSSL_FILE,OPENSSL_LINE)
|
||||
# define SM9err(f,r) ERR_PUT_error(ERR_LIB_SM9,(f),(r),OPENSSL_FILE,OPENSSL_LINE)
|
||||
|
||||
# define ERR_PACK(l,f,r) ( \
|
||||
(((unsigned int)(l) & 0x0FF) << 24L) | \
|
||||
@@ -196,6 +202,11 @@ typedef struct err_state_st {
|
||||
# define ERR_R_CPK_LIB ERR_LIB_CPK/* 56 */
|
||||
# define ERR_R_OTP_LIB ERR_LIB_OTP/* 57 */
|
||||
# define ERR_R_GMAPI_LIB ERR_LIB_GMAPI/* 58 */
|
||||
# define ERR_R_BFIBE_LIB ERR_LIB_BFIBE/* 59 */
|
||||
# define ERR_R_BB1IBE_LIB ERR_LIB_BB1IBE/* 60 */
|
||||
# define ERR_R_SM9_LIB ERR_LIB_SM9/* 61 */
|
||||
|
||||
# define ERR_R_NESTED_ASN1_ERROR 58
|
||||
|
||||
# define ERR_R_NESTED_ASN1_ERROR 58
|
||||
# define ERR_R_MISSING_ASN1_EOS 63
|
||||
|
||||
205
include/openssl/sm9.h
Normal file
205
include/openssl/sm9.h
Normal file
@@ -0,0 +1,205 @@
|
||||
/* ====================================================================
|
||||
* Copyright (c) 2016 The GmSSL Project. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
*
|
||||
* 3. All advertising materials mentioning features or use of this
|
||||
* software must display the following acknowledgment:
|
||||
* "This product includes software developed by the GmSSL Project.
|
||||
* (http://gmssl.org/)"
|
||||
*
|
||||
* 4. The name "GmSSL Project" must not be used to endorse or promote
|
||||
* products derived from this software without prior written
|
||||
* permission. For written permission, please contact
|
||||
* guanzhi1980@gmail.com.
|
||||
*
|
||||
* 5. Products derived from this software may not be called "GmSSL"
|
||||
* nor may "GmSSL" appear in their names without prior written
|
||||
* permission of the GmSSL Project.
|
||||
*
|
||||
* 6. Redistributions of any form whatsoever must retain the following
|
||||
* acknowledgment:
|
||||
* "This product includes software developed by the GmSSL Project
|
||||
* (http://gmssl.org/)"
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE GmSSL PROJECT ``AS IS'' AND ANY
|
||||
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GmSSL PROJECT OR
|
||||
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
* ====================================================================
|
||||
*/
|
||||
|
||||
#ifndef HEADER_SM9_H
|
||||
#define HEADER_SM9_H
|
||||
|
||||
#include <openssl/bn.h>
|
||||
#include <openssl/ec.h>
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/asn1.h>
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct SM9PublicParameters_st SM9PublicParameters;
|
||||
typedef struct SM9MasterSecret_st SM9MasterSecret;
|
||||
typedef struct SM9PrivateKey_st SM9PrivateKey;
|
||||
typedef struct SM9Ciphertext_st SM9Ciphertext;
|
||||
typedef struct SM9Signature_st SM9Signature;
|
||||
|
||||
int SM9_setup_by_pairing_name(int nid,
|
||||
SM9PublicParameters **mpk,
|
||||
SM9MasterSecret **msk);
|
||||
|
||||
SM9PrivateKey *SM9_extract_private_key(SM9PublicParameters *mpk,
|
||||
SM9MasterSecret *msk,
|
||||
const char *id, size_t idlen);
|
||||
|
||||
typedef struct {
|
||||
const EVP_MD *kdf_md;
|
||||
const EVP_CIPHER *enc_cipher;
|
||||
const EVP_CIPHER *cmac_cipher;
|
||||
const EVP_CIPHER *cbcmac_cipher;
|
||||
const EVP_MD *hmac_md;
|
||||
} SM9EncParameters;
|
||||
|
||||
SM9Ciphertext *SM9_do_encrypt(SM9PublicParameters *mpk,
|
||||
const SM9EncParameters *encparams,
|
||||
const unsigned char *in, size_t inlen,
|
||||
const char *id, size_t idlen);
|
||||
|
||||
int SM9_do_decrypt(SM9PublicParameters *mpk,
|
||||
const SM9EncParameters *encparams,
|
||||
const SM9Ciphertext *in,
|
||||
unsigned char *out, size_t *outlen,
|
||||
SM9PrivateKey *sk,
|
||||
const char *id, size_t idlen);
|
||||
|
||||
int SM9_encrypt(SM9PublicParameters *mpk,
|
||||
const SM9EncParameters *encparams,
|
||||
const unsigned char *in, size_t inlen,
|
||||
unsigned char *out, size_t *outlen,
|
||||
const char *id, size_t idlen);
|
||||
|
||||
int SM9_decrypt(SM9PublicParameters *mpk,
|
||||
const SM9EncParameters *encparams,
|
||||
const unsigned char *in, size_t inlen,
|
||||
unsigned char *out, size_t *outlen,
|
||||
SM9PrivateKey *sk,
|
||||
const char *id, size_t idlen);
|
||||
|
||||
int SM9_encrypt_with_recommended(SM9PublicParameters *mpk,
|
||||
const unsigned char *in, size_t inlen,
|
||||
unsigned char *out, size_t *outlen,
|
||||
const char *id, size_t idlen);
|
||||
|
||||
int SM9_decrypt_with_recommended(SM9PublicParameters *mpk,
|
||||
const unsigned char *in, size_t inlen,
|
||||
unsigned char *out, size_t *outlen,
|
||||
SM9PrivateKey *sk,
|
||||
const char *id, size_t idlen);
|
||||
|
||||
SM9Signature *SM9_do_sign(SM9PublicParameters *mpk,
|
||||
const unsigned char *dgst, size_t dgstlen,
|
||||
SM9PrivateKey *sk);
|
||||
|
||||
int SM9_do_verify(SM9PublicParameters *mpk,
|
||||
const unsigned char *dgst, size_t dgstlen,
|
||||
const SM9Signature *sig,
|
||||
const char *id, size_t idlen);
|
||||
|
||||
int SM9_sign(SM9PublicParameters *mpk,
|
||||
const unsigned char *dgst, size_t dgstlen,
|
||||
unsigned char *sig, size_t *siglen,
|
||||
SM9PrivateKey *sk);
|
||||
|
||||
int SM9_verify(SM9PublicParameters *mpk,
|
||||
const unsigned char *dgst, size_t dgstlen,
|
||||
const unsigned char *sig, size_t siglen,
|
||||
const char *id, size_t idlen);
|
||||
|
||||
DECLARE_ASN1_FUNCTIONS(SM9PublicParameters)
|
||||
DECLARE_ASN1_FUNCTIONS(SM9MasterSecret)
|
||||
DECLARE_ASN1_FUNCTIONS(SM9PrivateKey)
|
||||
DECLARE_ASN1_FUNCTIONS(SM9Ciphertext)
|
||||
DECLARE_ASN1_FUNCTIONS(SM9Signature)
|
||||
|
||||
|
||||
/* BEGIN ERROR CODES */
|
||||
/*
|
||||
* The following lines are auto generated by the script mkerr.pl. Any changes
|
||||
* made after this point may be overwritten when the script is next run.
|
||||
*/
|
||||
|
||||
int ERR_load_SM9_strings(void);
|
||||
|
||||
/* Error codes for the SM9 functions. */
|
||||
|
||||
/* Function codes. */
|
||||
# define SM9_F_SM9CIPHERTEXT_CHECK 100
|
||||
# define SM9_F_SM9ENCPARAMETERS_DECRYPT 101
|
||||
# define SM9_F_SM9ENCPARAMETERS_ENCRYPT 102
|
||||
# define SM9_F_SM9ENCPARAMETERS_GENERATE_MAC 103
|
||||
# define SM9_F_SM9ENCPARAMETERS_GET_KEY_LENGTH 104
|
||||
# define SM9_F_SM9PUBLICPARAMETERS_GET_POINT_SIZE 105
|
||||
# define SM9_F_SM9_DECRYPT 106
|
||||
# define SM9_F_SM9_DO_DECRYPT 107
|
||||
# define SM9_F_SM9_DO_ENCRYPT 108
|
||||
# define SM9_F_SM9_DO_SIGN 109
|
||||
# define SM9_F_SM9_DO_SIGN_TYPE1CURVE 110
|
||||
# define SM9_F_SM9_DO_VERIFY 111
|
||||
# define SM9_F_SM9_DO_VERIFY_TYPE1CURVE 112
|
||||
# define SM9_F_SM9_ENCRYPT 113
|
||||
# define SM9_F_SM9_EXTRACT_PRIVATE_KEY 114
|
||||
# define SM9_F_SM9_SETUP_TYPE1CURVE 115
|
||||
# define SM9_F_SM9_SIGN 116
|
||||
# define SM9_F_SM9_UNWRAP_KEY 117
|
||||
# define SM9_F_SM9_VERIFY 118
|
||||
# define SM9_F_SM9_WRAP_KEY 119
|
||||
|
||||
/* Reason codes. */
|
||||
# define SM9_R_BUFFER_TOO_SMALL 100
|
||||
# define SM9_R_COMPUTE_PAIRING_FAILURE 101
|
||||
# define SM9_R_GENERATE_MAC_FAILURE 102
|
||||
# define SM9_R_HASH_FAILURE 103
|
||||
# define SM9_R_INVALID_CIPHERTEXT 104
|
||||
# define SM9_R_INVALID_CURVE 105
|
||||
# define SM9_R_INVALID_DIGEST 106
|
||||
# define SM9_R_INVALID_DIGEST_LENGTH 107
|
||||
# define SM9_R_INVALID_ENCPARAMETERS 108
|
||||
# define SM9_R_INVALID_ID 109
|
||||
# define SM9_R_INVALID_ID_LENGTH 110
|
||||
# define SM9_R_INVALID_INPUT 111
|
||||
# define SM9_R_INVALID_KEY_LENGTH 112
|
||||
# define SM9_R_INVALID_MD 113
|
||||
# define SM9_R_INVALID_PARAMETER 114
|
||||
# define SM9_R_INVALID_SIGNATURE 115
|
||||
# define SM9_R_INVALID_TYPE1CURVE 116
|
||||
# define SM9_R_KDF_FAILURE 117
|
||||
# define SM9_R_NOT_NAMED_CURVE 118
|
||||
# define SM9_R_PARSE_PAIRING 119
|
||||
# define SM9_R_ZERO_ID 120
|
||||
|
||||
# ifdef __cplusplus
|
||||
}
|
||||
# endif
|
||||
#endif
|
||||
Reference in New Issue
Block a user