mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
some import functionality
This commit is contained in:
parent
f477447d9a
commit
82464369f6
45 changed files with 1299 additions and 324 deletions
|
@ -73,6 +73,9 @@ int cipher_debug_mode;
|
|||
int string_to_cipher_algo( const char *string );
|
||||
int string_to_pubkey_algo( const char *string );
|
||||
int string_to_digest_algo( const char *string );
|
||||
const char * cipher_algo_to_string( int algo );
|
||||
const char * pubkey_algo_to_string( int algo );
|
||||
const char * digest_algo_to_string( int algo );
|
||||
int check_cipher_algo( int algo );
|
||||
int check_pubkey_algo( int algo );
|
||||
int check_digest_algo( int algo );
|
||||
|
|
|
@ -89,6 +89,7 @@ int iobuf_seek( IOBUF a, ulong newpos );
|
|||
|
||||
int iobuf_readbyte(IOBUF a);
|
||||
int iobuf_read(IOBUF a, byte *buf, unsigned buflen );
|
||||
int iobuf_peek(IOBUF a, byte *buf, unsigned buflen );
|
||||
int iobuf_writebyte(IOBUF a, unsigned c);
|
||||
int iobuf_write(IOBUF a, byte *buf, unsigned buflen );
|
||||
int iobuf_writestr(IOBUF a, const char *buf );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue