MYCrypto_main.m
author snej@snej.local
Tue Apr 14 18:34:52 2009 -0700 (2009-04-14)
changeset 11 3568d5fd4b6a
permissions -rw-r--r--
* The build process runs Doxygen only if it's installed (i.e. on the shell search path).
* Added instructions to the README on setting up a named Source Tree for MYUtilities.
* Changed the RSA key size in MYCryptoTest to 2048 and made it a named constant.
     1 /*
     2  *  MYCrypto_main.c
     3  *  MYCrypto
     4  *
     5  *  Created by Jens Alfke on 3/28/09.
     6  *  Copyright 2009 Jens Alfke. All rights reserved.
     7  *
     8  */
     9 
    10 
    11 #import "Test.h"
    12 
    13 
    14 int main(int argc, const char **argv) {
    15     if (argc<2) {
    16         static const char *testArgs[] = {"MYCrypto", "Test_All"};
    17         argc = 2;
    18         argv = testArgs;
    19     }
    20     
    21     RunTestCases(argc,argv);
    22     return 0;
    23 }