18 lines
544 B
C
18 lines
544 B
C
#ifndef KITTYCRYPT_H
|
|
#define KITTYCRYPT_H
|
|
|
|
#include "nbcrypt.h"
|
|
|
|
int cryptstring( char * st, const char * key ) ;
|
|
int decryptstring( char * st, const char * key ) ;
|
|
int cryptpassword( const int mode, char * password, const char * host, const char * termtype ) ;
|
|
int decryptpassword( const int mode, char * password, const char * host, const char * termtype ) ;
|
|
|
|
void MASKPASS( const int mode, char * password ) ;
|
|
|
|
// Procedure de management de la passphrase
|
|
int GetUserPassSSHNoSave(void) ;
|
|
char * ManagePassPhrase( const char * st ) ;
|
|
|
|
#endif
|