mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Output armor works, RSA keygen works.
This commit is contained in:
parent
5393dd53c5
commit
25c8f1a3d7
21 changed files with 395 additions and 115 deletions
|
@ -627,6 +627,15 @@ iobuf_write(IOBUF a, byte *buf, unsigned buflen )
|
|||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
iobuf_writestr(IOBUF a, const char *buf )
|
||||
{
|
||||
for( ; *buf; buf++ )
|
||||
if( iobuf_writebyte(a, *buf) )
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/****************
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue