mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-13 03:46:26 +08:00
update ec
ec_kmeth and strict signature
This commit is contained in:
28
crypto/ecies/ecies_ossl.c
Normal file
28
crypto/ecies/ecies_ossl.c
Normal file
@@ -0,0 +1,28 @@
|
||||
|
||||
|
||||
|
||||
|
||||
int ossl_ecies_encrypt(int type, const unsigned char *in, size_t inlen,
|
||||
unsigned char *out, size_t *outlen, EC_KEY *ec_key)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
ECIES_CIPHERTEXT_VALUE *ossl_ecies_do_encrypt(int type, const unsigned char *in,
|
||||
size_t inlen, EC_KEY *ec_key)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int ossl_ecies_decrypt(int type, const unsigned char *in, size_t inlen,
|
||||
unsigned char *out, size_t *outlen, EC_KEY *ec_key)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int ossl_ecies_do_decrypt(int type, const ECIES_CIPHERTEXT_VALUE *in,
|
||||
unsigned char *out, size_t *outlen, EC_KEY *ec_key)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user