18 lines
380 B
C
18 lines
380 B
C
#ifndef KITTYCRYPT_H
|
|
#define KITTYCRYPT_H
|
|
|
|
#include "nbcrypt.h"
|
|
|
|
extern char PassKey[1024] ;
|
|
|
|
int cryptstring( char * st, const char * key ) ;
|
|
int decryptstring( char * st, const char * key ) ;
|
|
|
|
// Generation de la clé privée PuTTY
|
|
int GenerePrivateKey( const char * filename ) ;
|
|
|
|
// Procedure de management de la passphrase
|
|
char * ManagePassPhrase( const char * st ) ;
|
|
|
|
#endif
|