mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-31 15:04:26 +08:00
77 lines
1.9 KiB
C
77 lines
1.9 KiB
C
#ifndef HEADER_ECIES_H
|
|
#define HEADER_ECIES_H
|
|
|
|
#include <openssl/ec.h>
|
|
#include <openssl/err.h>
|
|
#include <openssl/evp.h>
|
|
#include <openssl/x509.h>
|
|
#include <openssl/asn1.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/*
|
|
KDFSet ALGORITHM ::= {
|
|
{ OID x9-63-kdf PARMS HashAlgorithm } |
|
|
{ OID nist-concatenation-kdf PARMS HashAlgorithm } |
|
|
{ OID tls-kdf PARMS HashAlgorithm } |
|
|
{ OID ikev2-kdf PARMS HashAlgorithm }
|
|
}
|
|
*/
|
|
|
|
typedef struct ecies_params_st {
|
|
int kdf_nid;
|
|
const EVP_MD *kdf_md;
|
|
const EVP_CIPHER *sym_cipher;
|
|
int mac_nid;
|
|
const EVP_MD *mac_md;
|
|
const EVP_CIPHER *mac_cipher;
|
|
} ECIES_PARAMS;
|
|
|
|
typedef struct ecies_ciphertext_value_st {
|
|
ASN1_OCTET_STRING *ephem_point;
|
|
ASN1_OCTET_STRING *ciphertext;
|
|
ASN1_OCTET_STRING *mactag;
|
|
} ECIES_CIPHERTEXT_VALUE;
|
|
|
|
DECLARE_ASN1_FUNCTIONS(ECIES_CIPHERTEXT_VALUE)
|
|
|
|
int i2d_ECIESParameters(const ECIES_PARAMS *param, unsigned char **out);
|
|
ECIES_PARAMS *d2i_ECIESParameters(ECIES_PARAMS **param, const unsigned char **in, long len);
|
|
|
|
ECIES_CIPHERTEXT_VALUE *ECIES_do_encrypt(const ECIES_PARAMS *param,
|
|
const unsigned char *in, size_t inlen, const EC_KEY *pub_key);
|
|
int ECIES_do_decrypt(const ECIES_CIPHERTEXT_VALUE *cv,
|
|
const ECIES_PARAMS *param, unsigned char *out, size_t *outlen,
|
|
EC_KEY *pri_key);
|
|
|
|
|
|
void ERR_load_ECIES_strings(void);
|
|
|
|
/* Error codes for the ECIES functions. */
|
|
|
|
/* Function codes. */
|
|
#define ECIES_F_I2D_ECIESPARAMETERS 100
|
|
#define ECIES_F_D2I_ECIESPARAMETERS 101
|
|
#define ECIES_F_ECIES_DO_ENCRYPT 102
|
|
#define ECIES_F_ECIES_DO_DECRYPT 103
|
|
|
|
/* Reason codes. */
|
|
#define ECIES_R_BAD_DATA 100
|
|
#define ECIES_R_UNKNOWN_CIPHER_TYPE 101
|
|
#define ECIES_R_ENCRYPT_FAILED 102
|
|
#define ECIES_R_DECRYPT_FAILED 103
|
|
#define ECIES_R_UNKNOWN_MAC_TYPE 104
|
|
#define ECIES_R_GEN_MAC_FAILED 105
|
|
#define ECIES_R_VERIFY_MAC_FAILED 106
|
|
#define ECIES_R_ECDH_FAILED 107
|
|
#define ECIES_R_BUFFER_TOO_SMALL 108
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|
|
|