Files
KiTTY/kitty_crypt.h
T
2019-11-27 07:54:01 +01:00

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