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.
snej@0
     1
/*
snej@0
     2
 *  MYCrypto_main.c
snej@0
     3
 *  MYCrypto
snej@0
     4
 *
snej@0
     5
 *  Created by Jens Alfke on 3/28/09.
snej@0
     6
 *  Copyright 2009 Jens Alfke. All rights reserved.
snej@0
     7
 *
snej@0
     8
 */
snej@0
     9
snej@0
    10
snej@0
    11
#import "Test.h"
snej@0
    12
snej@0
    13
snej@0
    14
int main(int argc, const char **argv) {
snej@0
    15
    if (argc<2) {
snej@0
    16
        static const char *testArgs[] = {"MYCrypto", "Test_All"};
snej@0
    17
        argc = 2;
snej@0
    18
        argv = testArgs;
snej@0
    19
    }
snej@0
    20
    
snej@0
    21
    RunTestCases(argc,argv);
snej@0
    22
    return 0;
snej@0
    23
}