~ubuntu-branches/debian/lenny/dropbear/lenny

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Gerrit Pape
  • Date: 2005-05-25 22:38:17 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050525223817-fdl653extybmz1zb
Tags: 0.45-3
* debian/dropbear.init: init script prints human readable message in case
  it's disabled (closes: #309099).
* debian/dropbear.postinst: configure: restart service through init script
  instead of start.
* debian/dropbear.prerm: set -u -> set -e.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
int mac_test(void)
5
5
{
6
 
   DO(hmac_test());
7
 
   DO(pmac_test());
8
 
   DO(omac_test());
9
 
   DO(eax_test());
10
 
   DO(ocb_test());
 
6
   DO(hmac_test()); 
 
7
   DO(pmac_test()); 
 
8
   DO(omac_test()); 
 
9
   DO(eax_test());  
 
10
   DO(ocb_test());  
11
11
   return 0;
12
12
}