mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
partial DSA support
This commit is contained in:
parent
1b1a6d7e77
commit
a6a8f1e706
62 changed files with 2247 additions and 447 deletions
|
@ -64,3 +64,26 @@ make_filename( const char *first_part, ... )
|
|||
return name;
|
||||
}
|
||||
|
||||
|
||||
/****************
|
||||
* A simple function to decide, wether the filename ist stdout
|
||||
* or a real filename.
|
||||
*/
|
||||
const char *
|
||||
print_fname_stdout( const char *s )
|
||||
{
|
||||
if( !s || (*s == '-' && !s[1]) )
|
||||
return "[stdout]";
|
||||
return s;
|
||||
}
|
||||
|
||||
|
||||
const char *
|
||||
print_fname_stdin( const char *s )
|
||||
{
|
||||
if( !s || (*s == '-' && !s[1]) )
|
||||
return "[stdin]";
|
||||
return s;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue