1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
/* #############################################################################
* header information for configuration.c
* #############################################################################
* Copyright (C) 2005-2009 Harry Brueckner
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Contact: Harry Brueckner <harry_b@mm.st>
* Muenchener Strasse 12a
* 85253 Kleinberghofen
* Germany
* #############################################################################
*/
#ifndef CPM_CONFIGURATION_H
#define CPM_CONFIGURATION_H
/* #############################################################################
* prototypes
*/
void clearPassphrase(int final);
void freeConfiguration(void);
void initConfiguration(void);
/* #############################################################################
* global structures
*/
#define PASSPHRASE_LENGTH 256
typedef struct
{
char** defaultkeys;
char** defaulttemplates;
char** defaulttemplatestatus;
char** searchdata;
char* dbfilerc;
char* dbfilecmd;
char* rcfile;
char* encoding;
char* passwordalphabet;
#ifdef TEST_OPTION
char* testrun;
#endif
char hidecharacter;
int asktoquit;
int casesensitive;
int compression;
int configtest;
int cracklibstatus;
int createbackup;
int debuglevel;
int encryptdata;
int environtmentlist;
int help;
int infoheight;
int keeppassphrase;
int passwordlength;
int readonly;
int searchtype;
int security;
int templatelock;
int version;
} cpmconfig_t;
typedef struct
{
rlim_t memlock_limit;
char** resultpatterns;
char** searchpatterns;
char* dbfile;
char* lockfile;
char* realm;
char* realmhint;
/* Flawfinder: ignore */
char passphrase[PASSPHRASE_LENGTH + 1];
int casesensitive;
int commandlinekeys;
int datachanged;
int guimode;
int lockfilecreated;
int max_mem_lock;
int memory_safe;
int ptrace_safe;
int readonly;
int searchtype;
int updatestatus;
} cpmruntime_t;
/* #############################################################################
* global variables
*/
extern cpmconfig_t* config;
extern cpmruntime_t* runtime;
#define CRACKLIB_OFF 0
#define CRACKLIB_ON 1
#define SEARCH_UNDEF 0
#define SEARCH_REGEX 1
#define SEARCH_REGULAR 2
#endif
/* #############################################################################
*/
|