Example #1
0
/* Run the self-tests for CAMELLIA-CBC-128, tests bulk CBC decryption.
   Returns NULL on success. */
static const char*
selftest_cbc_128 (void)
{
  const int nblocks = 32+16+2;
  const int blocksize = CAMELLIA_BLOCK_SIZE;
  const int context_size = sizeof(CAMELLIA_context);

  return _gcry_selftest_helper_cbc("CAMELLIA", &camellia_setkey,
           &camellia_encrypt, &_gcry_camellia_cbc_dec, nblocks, blocksize,
	   context_size);
}
Example #2
0
/* Run the self-tests for BLOWFISH-CBC, tests bulk CBC decryption.
   Returns NULL on success. */
static const char *
selftest_cbc (void)
{
  const int nblocks = 4+2;
  const int blocksize = BLOWFISH_BLOCKSIZE;
  const int context_size = sizeof(BLOWFISH_context);

  return _gcry_selftest_helper_cbc("BLOWFISH", &bf_setkey,
           &encrypt_block, &_gcry_blowfish_cbc_dec, nblocks, blocksize,
	   context_size);
}
Example #3
0
/* Run the self-tests for SERPENT-CBC-128, tests bulk CBC decryption.
   Returns NULL on success. */
static const char*
selftest_cbc_128 (void)
{
  const int nblocks = 16+8+2;
  const int blocksize = sizeof(serpent_block_t);
  const int context_size = sizeof(serpent_context_t);

  return _gcry_selftest_helper_cbc("SERPENT", &serpent_setkey,
           &serpent_encrypt, &_gcry_serpent_cbc_dec, nblocks, blocksize,
	   context_size);
}