~ubuntu-branches/ubuntu/utopic/dropbear/utopic-proposed

« back to all changes in this revision

Viewing changes to libtomcrypt/demos/test/mac_test.c

  • Committer: Bazaar Package Importer
  • Author(s): Matt Johnston
  • Date: 2005-12-08 19:20:21 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051208192021-nyp9rwnt77nsg6ty
Tags: 0.47-1
* New upstream release.
* SECURITY: Fix incorrect buffer sizing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* test pmac/omac/hmac */
2
 
#include "test.h"
3
 
 
4
 
int mac_test(void)
5
 
{
6
 
   DO(hmac_test()); 
7
 
   DO(pmac_test()); 
8
 
   DO(omac_test()); 
9
 
   DO(eax_test());  
10
 
   DO(ocb_test());  
11
 
   return 0;
12
 
}