annotate examples/ch1-01.c @ 15:6362d3854bb4
libtomcrypt-orig
0.96 release of LibTomCrypt
author |
Matt Johnston <matt@ucc.asn.au> |
date |
Tue, 15 Jun 2004 14:07:21 +0000 |
parents |
7faae8f46238 |
children |
|
rev |
line source |
3
|
1 /* |
|
2 * Name : ch1-01.c |
|
3 * Purpose : Demonstration of a basic libtomcrypt program |
|
4 * Author : Tom St Denis |
|
5 * |
|
6 * History : v0.79 Initial release |
|
7 */ |
|
8 |
|
9 /* ch1-01-1 */ |
|
10 /* Include the default headers and libtomcrypt headers */ |
|
11 #include <mycrypt.h> |
|
12 |
|
13 int main(void) |
|
14 { |
|
15 return 0; |
|
16 } |
|
17 /* ch1-01-1 */ |
|
18 |