Macros | |
#define | CRYS_RSA_KG_PUB_EXP_MAX_SIZE_BITS 17 |
#define | CRYS_RSA_KG_PUB_EXP_ALLOW_VAL_1 0x000003 |
#define | CRYS_RSA_KG_PUB_EXP_ALLOW_VAL_2 0x000011 |
#define | CRYS_RSA_KG_PUB_EXP_ALLOW_VAL_3 0x010001 |
Functions | |
CRYSError_t | CRYS_RSA_KG_GenerateKeyPair (void *rndState_ptr, SaSiRndGenerateVectWorkFunc_t rndGenerateVectFunc, uint8_t *pubExp_ptr, uint16_t pubExpSizeInBytes, uint32_t keySize, CRYS_RSAUserPrivKey_t *userPrivKey_ptr, CRYS_RSAUserPubKey_t *userPubKey_ptr, CRYS_RSAKGData_t *keyGenData_ptr, CRYS_RSAKGFipsContext_t *pFipsCtx) |
CRYS_RSA_KG_GenerateKeyPair generates a Pair of public and private keys on non CRT mode according to [ANS X9.31]. More... | |
CRYSError_t | CRYS_RSA_KG_GenerateKeyPairCRT (void *rndState_ptr, SaSiRndGenerateVectWorkFunc_t rndGenerateVectFunc, uint8_t *pubExp_ptr, uint16_t pubExpSizeInBytes, uint32_t keySize, CRYS_RSAUserPrivKey_t *userPrivKey_ptr, CRYS_RSAUserPubKey_t *userPubKey_ptr, CRYS_RSAKGData_t *keyGenData_ptr, CRYS_RSAKGFipsContext_t *pFipsCtx) |
Generates a pair of public and private keys on CRT mode according to [ANS X9.31]. More... | |
#define CRYS_RSA_KG_PUB_EXP_ALLOW_VAL_1 0x000003 |
Definition of public exponent value.
Definition at line 63 of file crys_rsa_kg.h.
#define CRYS_RSA_KG_PUB_EXP_ALLOW_VAL_2 0x000011 |
Definition of public exponent value.
Definition at line 65 of file crys_rsa_kg.h.
#define CRYS_RSA_KG_PUB_EXP_ALLOW_VAL_3 0x010001 |
Definition of public exponent value.
Definition at line 67 of file crys_rsa_kg.h.
#define CRYS_RSA_KG_PUB_EXP_MAX_SIZE_BITS 17 |
Maximal public exponent size in bits.
Definition at line 61 of file crys_rsa_kg.h.
CRYSError_t CRYS_RSA_KG_GenerateKeyPair | ( | void * | rndState_ptr, |
SaSiRndGenerateVectWorkFunc_t | rndGenerateVectFunc, | ||
uint8_t * | pubExp_ptr, | ||
uint16_t | pubExpSizeInBytes, | ||
uint32_t | keySize, | ||
CRYS_RSAUserPrivKey_t * | userPrivKey_ptr, | ||
CRYS_RSAUserPubKey_t * | userPubKey_ptr, | ||
CRYS_RSAKGData_t * | keyGenData_ptr, | ||
CRYS_RSAKGFipsContext_t * | pFipsCtx | ||
) |
CRYS_RSA_KG_GenerateKeyPair generates a Pair of public and private keys on non CRT mode according to [ANS X9.31].
[in,out] | rndState_ptr | Pointer to the RND state structure. |
[in] | rndGenerateVectFunc | Pointer to the random vector generation function. |
[in] | pubExp_ptr | The pointer to the public exponent (public key). |
[in] | pubExpSizeInBytes | The public exponent size in bytes. |
[in] | keySize | The size of the key, in bits. Supported sizes are 512, 1024, 2048, 3072 and 4096 bit. |
[out] | userPrivKey_ptr | Pointer to the private key structure. |
[out] | userPubKey_ptr | Pointer to the public key structure. |
[in] | keyGenData_ptr | Pointer to a temporary structure required for the KeyGen operation. |
[in] | pFipsCtx | Pointer to temporary buffer used in case FIPS certification if required. |
CRYSError_t CRYS_RSA_KG_GenerateKeyPairCRT | ( | void * | rndState_ptr, |
SaSiRndGenerateVectWorkFunc_t | rndGenerateVectFunc, | ||
uint8_t * | pubExp_ptr, | ||
uint16_t | pubExpSizeInBytes, | ||
uint32_t | keySize, | ||
CRYS_RSAUserPrivKey_t * | userPrivKey_ptr, | ||
CRYS_RSAUserPubKey_t * | userPubKey_ptr, | ||
CRYS_RSAKGData_t * | keyGenData_ptr, | ||
CRYS_RSAKGFipsContext_t * | pFipsCtx | ||
) |
Generates a pair of public and private keys on CRT mode according to [ANS X9.31].
[in,out] | rndState_ptr | Pointer to the RND state structure. |
[in] | rndGenerateVectFunc | Pointer to the random vector generation function. |
[in] | pubExp_ptr | The pointer to the public exponent (public key). |
[in] | pubExpSizeInBytes | The public exponent size in bytes. |
[in] | keySize | The size of the key, in bits. Supported sizes are 512, 1024, 2048, 3072 and 4096 bit. |
[out] | userPrivKey_ptr | Pointer to the private key structure. |
[out] | userPubKey_ptr | Pointer to the public key structure. |
[in] | keyGenData_ptr | Pointer to a temporary structure required for the KeyGen operation. |
[in] | pFipsCtx | Pointer to temporary buffer used in case FIPS certification if required. |