Exemple #1
0
/* Run the self-tests for CAMELLIA-CFB-128, tests bulk CFB decryption.
   Returns NULL on success. */
static const char*
selftest_cfb_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_cfb("CAMELLIA", &camellia_setkey,
           &camellia_encrypt, &_gcry_camellia_cfb_dec, nblocks, blocksize,
	   context_size);
}
Exemple #2
0
/* Run the self-tests for BLOWFISH-CFB, tests bulk CBC decryption.
   Returns NULL on success. */
static const char *
selftest_cfb (void)
{
  const int nblocks = 4+2;
  const int blocksize = BLOWFISH_BLOCKSIZE;
  const int context_size = sizeof(BLOWFISH_context);

  return _gcry_selftest_helper_cfb("BLOWFISH", &bf_setkey,
           &encrypt_block, &_gcry_blowfish_cfb_dec, nblocks, blocksize,
	   context_size);
}
Exemple #3
0
/* Run the self-tests for SERPENT-CBC-128, tests bulk CBC decryption.
   Returns NULL on success. */
static const char*
selftest_cfb_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_cfb("SERPENT", &serpent_setkey,
           &serpent_encrypt, &_gcry_serpent_cfb_dec, nblocks, blocksize,
	   context_size);
}