tomcrypt/src/pk/pkcs1/pkcs_1_oaep_encode.c

171 lines
4.5 KiB
C
Raw Normal View History

2004-05-12 20:42:16 +00:00
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The library is free for all purposes without any express
* guarantee it works.
*
2005-04-17 11:37:13 +00:00
* Tom St Denis, tomstdenis@gmail.com, http://libtomcrypt.org
2004-05-12 20:42:16 +00:00
*/
2004-12-30 23:55:53 +00:00
#include "tomcrypt.h"
2004-05-12 20:42:16 +00:00
2004-12-30 23:55:53 +00:00
/**
@file pkcs_1_oaep_encode.c
OAEP Padding for PKCS #1, Tom St Denis
*/
2004-05-12 20:42:16 +00:00
#ifdef PKCS_1
2004-12-30 23:55:53 +00:00
/**
PKCS #1 v2.00 OAEP encode
@param msg The data to encode
@param msglen The length of the data to encode (octets)
@param lparam A session or system parameter (can be NULL)
@param lparamlen The length of the lparam data
@param modulus_bitlen The bit length of the RSA modulus
@param prng An active PRNG state
@param prng_idx The index of the PRNG desired
@param hash_idx The index of the hash desired
@param out [out] The destination for the encoded data
@param outlen [in/out] The max size and resulting size of the encoded data
@return CRYPT_OK if successful
*/
2004-05-12 20:42:16 +00:00
int pkcs_1_oaep_encode(const unsigned char *msg, unsigned long msglen,
2004-05-31 02:36:47 +00:00
const unsigned char *lparam, unsigned long lparamlen,
unsigned long modulus_bitlen, prng_state *prng,
int prng_idx, int hash_idx,
unsigned char *out, unsigned long *outlen)
2004-05-12 20:42:16 +00:00
{
2004-06-20 02:41:49 +00:00
unsigned char *DB, *seed, *mask;
2004-05-12 20:42:16 +00:00
unsigned long hLen, x, y, modulus_len;
int err;
2004-12-30 23:55:53 +00:00
LTC_ARGCHK(msg != NULL);
LTC_ARGCHK(out != NULL);
LTC_ARGCHK(outlen != NULL);
2004-05-12 20:42:16 +00:00
/* test valid hash */
if ((err = hash_is_valid(hash_idx)) != CRYPT_OK) {
return err;
}
/* valid prng */
if ((err = prng_is_valid(prng_idx)) != CRYPT_OK) {
return err;
}
hLen = hash_descriptor[hash_idx].hashsize;
modulus_len = (modulus_bitlen >> 3) + (modulus_bitlen & 7 ? 1 : 0);
2005-04-17 11:37:13 +00:00
/* test message size */
if ((2*hLen >= (modulus_len - 2)) || (msglen > (modulus_len - 2*hLen - 2))) {
return CRYPT_PK_INVALID_SIZE;
}
2004-06-20 02:41:49 +00:00
/* allocate ram for DB/mask/salt of size modulus_len */
DB = XMALLOC(modulus_len);
mask = XMALLOC(modulus_len);
seed = XMALLOC(modulus_len);
if (DB == NULL || mask == NULL || seed == NULL) {
if (DB != NULL) {
XFREE(DB);
}
if (mask != NULL) {
XFREE(mask);
}
if (seed != NULL) {
XFREE(seed);
}
return CRYPT_MEM;
}
2004-05-12 20:42:16 +00:00
/* get lhash */
2004-06-23 19:55:24 +00:00
/* DB == lhash || PS || 0x01 || M, PS == k - mlen - 2hlen - 2 zeroes */
2004-06-20 02:41:49 +00:00
x = modulus_len;
2004-05-12 20:42:16 +00:00
if (lparam != NULL) {
if ((err = hash_memory(hash_idx, lparam, lparamlen, DB, &x)) != CRYPT_OK) {
2004-12-30 23:55:53 +00:00
goto LBL_ERR;
2004-05-12 20:42:16 +00:00
}
} else {
/* can't pass hash_memory a NULL so use DB with zero length */
if ((err = hash_memory(hash_idx, DB, 0, DB, &x)) != CRYPT_OK) {
2004-12-30 23:55:53 +00:00
goto LBL_ERR;
2004-05-12 20:42:16 +00:00
}
}
/* append PS then 0x01 (to lhash) */
x = hLen;
y = modulus_len - msglen - 2*hLen - 2;
while (y--) {
DB[x++] = 0x00;
}
DB[x++] = 0x01;
/* message */
y = msglen;
while (y--) {
DB[x++] = *msg++;
}
/* now choose a random seed */
if (prng_descriptor[prng_idx].read(seed, hLen, prng) != hLen) {
2004-06-20 02:41:49 +00:00
err = CRYPT_ERROR_READPRNG;
2004-12-30 23:55:53 +00:00
goto LBL_ERR;
2004-05-12 20:42:16 +00:00
}
/* compute MGF1 of seed (k - hlen - 1) */
if ((err = pkcs_1_mgf1(seed, hLen, hash_idx, mask, modulus_len - hLen - 1)) != CRYPT_OK) {
2004-12-30 23:55:53 +00:00
goto LBL_ERR;
2004-05-12 20:42:16 +00:00
}
/* xor against DB */
for (y = 0; y < (modulus_len - hLen - 1); y++) {
DB[y] ^= mask[y];
}
/* compute MGF1 of maskedDB (hLen) */
if ((err = pkcs_1_mgf1(DB, modulus_len - hLen - 1, hash_idx, mask, hLen)) != CRYPT_OK) {
2004-12-30 23:55:53 +00:00
goto LBL_ERR;
2004-05-12 20:42:16 +00:00
}
/* XOR against seed */
for (y = 0; y < hLen; y++) {
seed[y] ^= mask[y];
}
/* create string of length modulus_len */
if (*outlen < modulus_len) {
2004-06-20 02:41:49 +00:00
err = CRYPT_BUFFER_OVERFLOW;
2004-12-30 23:55:53 +00:00
goto LBL_ERR;
2004-05-12 20:42:16 +00:00
}
/* start output which is 0x00 || maskedSeed || maskedDB */
x = 0;
out[x++] = 0x00;
for (y = 0; y < hLen; y++) {
out[x++] = seed[y];
}
for (y = 0; y < modulus_len - hLen - 1; y++) {
out[x++] = DB[y];
}
*outlen = x;
2004-06-20 02:41:49 +00:00
err = CRYPT_OK;
2004-12-30 23:55:53 +00:00
LBL_ERR:
#ifdef LTC_CLEAN_STACK
2004-06-20 02:41:49 +00:00
zeromem(DB, modulus_len);
zeromem(seed, modulus_len);
zeromem(mask, modulus_len);
2004-05-12 20:42:16 +00:00
#endif
2004-06-20 02:41:49 +00:00
XFREE(seed);
XFREE(mask);
XFREE(DB);
return err;
2004-05-12 20:42:16 +00:00
}
#endif /* PKCS_1 */