cryptoFunction getFunctionPointer ( const char *  functionName  ) 

Definition at line 39 of file cryptoFunctions.cpp.

00039                                                              {
00040         bool found = false;
00041         int index = 0;
00042         while ( !found && HASH_NAMES[index] != NULL ) {
00043                 if ( !strcmp(HASH_NAMES[index], functionName) ) {
00044                         return HASH_FUNCTIONS[index];
00045                         
00046                 }
00047                 index++;
00048         }
00049         return 0;
00050 }


Generated on Wed Jun 25 14:46:45 2008 for keyvil by  doxygen 1.5.1