Encrypts plaintext using ECIES with KDF-XOR cipher, based on IEEE 1363A and SEC1 Version 1.7.
#include "huecc.h"
int hu_ECIESKDFXOREncrypt(sb_Params eccParams, sb_PublicKey publicKey, int eciesMode, int ecdhMode, int macAlgId, size_t addInfoMACLen, const unsigned char *addInfoMAC, int kdfAlgId, size_t addInfoKDFLen, const unsigned char *addInfoKDF, size_t plaintextLen, const unsigned char *plaintext, size_t *ciphertextLen, unsigned char *ciphertext, sb_GlobalCtx sbCtx)
BlackBerry 10.0.0
An ECC parameters object.
An ECC public key object.
ECIES mode. It selects SEC1 normal, IEEE DHAES or SEC1 backwards compatibility mode (equivalent to IEEE non-DHAES mode).
ECDH Mode. It selects standard ECDH or cofactor version of ECDH.
MAC Algorithm ID.
The length (in bytes) of additional information for MAC. (Optional)
Additional information for MAC. (Optional - set to NULL if not used.)
KDF Algorithm ID.
The length (in bytes) of additional information for KDF. (Optional)
Additional information for KDF. (Optional - set to NULL if not used.)
The length (in bytes) of the plaintext.
The plaintext.
The length (in bytes) of the ciphertext.
The ciphertext.
A global context.
The IEEE KDF is not supported.
The ECC parameter object must have been created with an RNG context.
If the length of the ciphertext is known, a pointer to a buffer large enough to hold the ciphertext should be passed in ciphertext and its length in ciphertextLen. This function will place the ciphertext into ciphertext and set the actual length of the ciphertext in ciphertextLen.
If ciphertext is NULL, this function will set the correct length of the ciphertext in ciphertextLen. If ciphertext is not NULL but ciphertextLen is too small, this function will return an error.
The eccParams object is NULL.
The tag for the params object is not of the expected type.
No RNG context was found in the parameters object.
The publicKey object is NULL.
The publicKey object is invalid.
Plaintext buffer is NULL.
The length of the plaintext buffer is invalid.
The ciphertext buffer is NULL.
The length of the ciphertext buffer is invalid.
Memory allocation failure.
Success.