view examples/ch1-03.c @ 125:d16fc1b2223d libtomcrypt

merge of 8231809d2509aa54773443786e3123766438d924 and e30f886c9c14efb01f49297b3fb6b97c8868fd88
author Matt Johnston <matt@ucc.asn.au>
date Tue, 14 Sep 2004 13:28:31 +0000
parents d7da3b1e1540
children
line wrap: on
line source

/* 
 * Name      : ch1-03.c
 * Purpose   : Demonstration of variable length outputs
 * Author    : Tom St Denis
 *
 * History   : v0.79 Initial release
 */
 
 /* ch1-01-1 */
 #include <mycrypt.h>
 
 int main(void)
 {
    unsigned long length;
    unsigned char buffer[512];
    int errno;
    
    length = sizeof(buffer);
    if ((errno = some_func(..., buffer, &length)) != CRYPT_OK) {
       printf("Error: %s\n", error_to_string(errno));
       return EXIT_FAILURE;
    }
    printf("Size of output is %lu bytes\n", length);
    return 0;
}
/* ch1-01-1 */