My Project
Loading...
Searching...
No Matches
ecc.h
Go to the documentation of this file.
1
52
53int wc_ecc_make_key(WC_RNG* rng, int keysize, ecc_key* key);
54
113
114int wc_ecc_make_key_ex(WC_RNG* rng, int keysize, ecc_key* key, int curve_id);
115
149
150int wc_ecc_check_key(ecc_key* key);
151
170
171void wc_ecc_key_free(ecc_key* key);
172
245
246int wc_ecc_shared_secret(ecc_key* private_key, ecc_key* public_key, byte* out,
247 word32* outlen);
248
291
292int wc_ecc_shared_secret_ex(ecc_key* private_key, ecc_point* point,
293 byte* out, word32 *outlen);
294
360
361int wc_ecc_sign_hash(const byte* in, word32 inlen, byte* out, word32 *outlen,
362 WC_RNG* rng, ecc_key* key);
363
431
432int wc_ecc_sign_hash_ex(const byte* in, word32 inlen, WC_RNG* rng,
433 ecc_key* key, mp_int *r, mp_int *s);
434
499
500int wc_ecc_verify_hash(const byte* sig, word32 siglen, const byte* hash,
501 word32 hashlen, int* stat, ecc_key* key);
502
538
539int wc_ecc_verify_hash_ex(mp_int *r, mp_int *s, const byte* hash,
540 word32 hashlen, int* stat, ecc_key* key);
541
562
563int wc_ecc_init(ecc_key* key);
564
588
589int wc_ecc_init_ex(ecc_key* key, void* heap, int devId);
590
610
611ecc_key* wc_ecc_key_new(void* heap);
612
631
632int wc_ecc_free(ecc_key* key);
633
657
658void wc_ecc_fp_free(void);
659
691
693
719
720ecc_point* wc_ecc_new_point(void);
721
747
748void wc_ecc_del_point(ecc_point* p);
749
780
781int wc_ecc_copy_point(ecc_point* p, ecc_point *r);
782
823
824int wc_ecc_cmp_point(ecc_point* a, ecc_point *b);
825
864
866
898
899int wc_ecc_mulmod(mp_int* k, ecc_point *G, ecc_point *R,
900 mp_int* a, mp_int* modulus, int map);
901
964
965int wc_ecc_export_x963(ecc_key* key, byte* out, word32* outLen);
966
1035
1036int wc_ecc_export_x963_ex(ecc_key* key, byte* out, word32* outLen, int compressed);
1037
1098
1099int wc_ecc_import_x963(const byte* in, word32 inLen, ecc_key* key);
1100
1167
1168int wc_ecc_import_private_key(const byte* priv, word32 privSz, const byte* pub,
1169 word32 pubSz, ecc_key* key);
1170
1233
1234int wc_ecc_rs_to_sig(const char* r, const char* s, byte* out, word32* outlen);
1235
1298
1299int wc_ecc_import_raw(ecc_key* key, const char* qx, const char* qy,
1300 const char* d, const char* curveName);
1301
1361
1362int wc_ecc_export_private_only(ecc_key* key, byte* out, word32* outLen);
1363
1393
1394int wc_ecc_export_point_der(const int curve_idx, ecc_point* point,
1395 byte* out, word32* outLen);
1396
1425
1426int wc_ecc_import_point_der(byte* in, word32 inLen, const int curve_idx,
1427 ecc_point* point);
1428
1453
1454int wc_ecc_size(ecc_key* key);
1455
1479
1481
1482
1512
1513int wc_ecc_sig_size(ecc_key* key);
1514
1515
1546
1547ecEncCtx* wc_ecc_ctx_new(int flags, WC_RNG* rng);
1548
1572
1573void wc_ecc_ctx_free(ecEncCtx*);
1574
1603
1604int wc_ecc_ctx_reset(ecEncCtx* ctx, WC_RNG* rng); /* reset for use again w/o alloc/free */
1605
1634
1635int wc_ecc_ctx_set_algo(ecEncCtx* ctx, byte encAlgo, byte kdfAlgo,
1636 byte macAlgo);
1637
1670
1671const byte* wc_ecc_ctx_get_own_salt(ecEncCtx*);
1672
1709
1710int wc_ecc_ctx_set_peer_salt(ecEncCtx* ctx, const byte* salt);
1711
1744
1745int wc_ecc_ctx_set_kdf_salt(ecEncCtx* ctx, const byte* salt, word32 sz);
1746
1775
1776int wc_ecc_ctx_set_info(ecEncCtx* ctx, const byte* info, int sz);
1777
1836
1837int wc_ecc_encrypt(ecc_key* privKey, ecc_key* pubKey, const byte* msg,
1838 word32 msgSz, byte* out, word32* outSz, ecEncCtx* ctx);
1839
1900
1901int wc_ecc_encrypt_ex(ecc_key* privKey, ecc_key* pubKey, const byte* msg,
1902 word32 msgSz, byte* out, word32* outSz, ecEncCtx* ctx, int compressed);
1903
1963
1964int wc_ecc_decrypt(ecc_key* privKey, ecc_key* pubKey, const byte* msg,
1965 word32 msgSz, byte* out, word32* outSz, ecEncCtx* ctx);
1966
1967
2008int wc_ecc_set_nonblock(ecc_key *key, ecc_nb_ctx_t* ctx);
2009
2034int wc_ecc_set_curve(ecc_key *key, int keysize, int curve_id);
int wc_ecc_decrypt(ecc_key *privKey, ecc_key *pubKey, const byte *msg, word32 msgSz, byte *out, word32 *outSz, ecEncCtx *ctx)
This function decrypts the ciphertext from msg to out. This function takes an optional ctx object as ...
int wc_ecc_ctx_set_kdf_salt(ecEncCtx *ctx, const byte *salt, word32 sz)
This function sets the salt pointer and length to use with KDF into the ecEncCtx object.
ecc_point * wc_ecc_new_point(void)
Allocate a new ECC point.
int wc_ecc_cmp_point(ecc_point *a, ecc_point *b)
Compare the value of a point with another one.
int wc_ecc_import_x963(const byte *in, word32 inLen, ecc_key *key)
This function imports a public ECC key from a buffer containing the key stored in ANSI X9....
int wc_ecc_copy_point(ecc_point *p, ecc_point *r)
Copy the value of one point to another one.
int wc_ecc_set_curve(ecc_key *key, int keysize, int curve_id)
Compare a curve which has larger key than specified size or the curve matched curve ID,...
int wc_ecc_mulmod(mp_int *k, ecc_point *G, ecc_point *R, mp_int *a, mp_int *modulus, int map)
Perform ECC Fixed Point multiplication.
int wc_ecc_export_x963_ex(ecc_key *key, byte *out, word32 *outLen, int compressed)
This function exports the ECC key from the ecc_key structure, storing the result in out....
ecc_key * wc_ecc_key_new(void *heap)
This function uses a user defined heap and allocates space for the key structure.
int wc_ecc_verify_hash_ex(mp_int *r, mp_int *s, const byte *hash, word32 hashlen, int *stat, ecc_key *key)
Verify an ECC signature. Result is written to stat. 1 is valid, 0 is invalid. Note: Do not use the re...
void wc_ecc_fp_free(void)
This function frees the fixed-point cache, which can be used with ecc to speed up computation times....
int wc_ecc_make_key(WC_RNG *rng, int keysize, ecc_key *key)
This function generates a new ecc_key and stores it in key.
void wc_ecc_ctx_free(ecEncCtx *)
This function frees the ecEncCtx object used for encrypting and decrypting messages.
int wc_ecc_ctx_set_algo(ecEncCtx *ctx, byte encAlgo, byte kdfAlgo, byte macAlgo)
This function can optionally be called after wc_ecc_ctx_new. It sets the encryption,...
int wc_ecc_rs_to_sig(const char *r, const char *s, byte *out, word32 *outlen)
This function converts the R and S portions of an ECC signature into a DER-encoded ECDSA signature....
int wc_ecc_import_point_der(byte *in, word32 inLen, const int curve_idx, ecc_point *point)
Import point from der format.
ecEncCtx * wc_ecc_ctx_new(int flags, WC_RNG *rng)
This function allocates and initializes space for a new ECC context object to allow secure message ex...
int wc_ecc_verify_hash(const byte *sig, word32 siglen, const byte *hash, word32 hashlen, int *stat, ecc_key *key)
This function verifies the ECC signature of a hash to ensure authenticity. It returns the answer thro...
int wc_ecc_set_nonblock(ecc_key *key, ecc_nb_ctx_t *ctx)
Enable ECC support for non-blocking operations. Supported for Single Precision (SP) math with the fol...
int wc_ecc_encrypt(ecc_key *privKey, ecc_key *pubKey, const byte *msg, word32 msgSz, byte *out, word32 *outSz, ecEncCtx *ctx)
This function encrypts the given input message from msg to out. This function takes an optional ctx o...
int wc_ecc_export_x963(ecc_key *key, byte *out, word32 *outLen)
This function exports the ECC key from the ecc_key structure, storing the result in out....
int wc_ecc_sign_hash(const byte *in, word32 inlen, byte *out, word32 *outlen, WC_RNG *rng, ecc_key *key)
This function signs a message digest using an ecc_key object to guarantee authenticity.
int wc_ecc_size(ecc_key *key)
This function returns the key size of an ecc_key structure in octets.
int wc_ecc_check_key(ecc_key *key)
Perform sanity checks on ecc key validity.
int wc_ecc_is_valid_idx(int n)
Checks if an ECC idx is valid.
int wc_ecc_ctx_set_peer_salt(ecEncCtx *ctx, const byte *salt)
This function sets the peer salt of an ecEncCtx object.
int wc_ecc_ctx_set_info(ecEncCtx *ctx, const byte *info, int sz)
This function can optionally be called before or after wc_ecc_ctx_set_peer_salt. It sets optional inf...
int wc_ecc_make_key_ex(WC_RNG *rng, int keysize, ecc_key *key, int curve_id)
This function generates a new ecc_key and stores it in key.
int wc_ecc_init(ecc_key *key)
This function initializes an ecc_key object for future use with message verification or key negotiati...
int wc_ecc_export_point_der(const int curve_idx, ecc_point *point, byte *out, word32 *outLen)
Export point to der.
int wc_ecc_import_raw(ecc_key *key, const char *qx, const char *qy, const char *d, const char *curveName)
This function fills an ecc_key structure with the raw components of an ECC signature.
int wc_ecc_shared_secret_ex(ecc_key *private_key, ecc_point *point, byte *out, word32 *outlen)
Create an ECC shared secret between private key and public point.
int wc_ecc_ctx_reset(ecEncCtx *ctx, WC_RNG *rng)
This function resets an ecEncCtx structure to avoid having to free and allocate a new context object.
int wc_ecc_free(ecc_key *key)
This function frees an ecc_key object after it has been used.
void wc_ecc_key_free(ecc_key *key)
This function frees an ecc_key key after it has been used.
int wc_ecc_shared_secret(ecc_key *private_key, ecc_key *public_key, byte *out, word32 *outlen)
This function generates a new secret key using a local private key and a received public key....
int wc_ecc_sign_hash_ex(const byte *in, word32 inlen, WC_RNG *rng, ecc_key *key, mp_int *r, mp_int *s)
Sign a message digest.
int wc_ecc_point_is_at_infinity(ecc_point *p)
Checks if a point is at infinity. Returns 1 if point is at infinity, 0 if not, < 0 on error.
int wc_ecc_encrypt_ex(ecc_key *privKey, ecc_key *pubKey, const byte *msg, word32 msgSz, byte *out, word32 *outSz, ecEncCtx *ctx, int compressed)
This function encrypts the given input message from msg to out. This function takes an optional ctx o...
const byte * wc_ecc_ctx_get_own_salt(ecEncCtx *)
This function returns the salt of an ecEncCtx object. This function should only be called when the ec...
int wc_ecc_init_ex(ecc_key *key, void *heap, int devId)
This function initializes an ecc_key object for future use with message verification or key negotiati...
int wc_ecc_sig_size_calc(int sz)
This function returns the worst case size for an ECC signature, given by: (keySz * 2) + SIG_HEADER_SZ...
void wc_ecc_del_point(ecc_point *p)
Free an ECC point from memory.
int wc_ecc_sig_size(ecc_key *key)
This function returns the worst case size for an ECC signature, given by: (keySz * 2) + SIG_HEADER_SZ...
int wc_ecc_import_private_key(const byte *priv, word32 privSz, const byte *pub, word32 pubSz, ecc_key *key)
This function imports a public/private ECC key pair from a buffer containing the raw private key,...
int wc_ecc_export_private_only(ecc_key *key, byte *out, word32 *outLen)
This function exports only the private key from an ecc_key structure. It stores the private key in th...
WC_RNG byte * b
Definition random.h:210