#ifndef _KEYGEN_H_5d8491b8_ #define _KEYGEN_H_5d8491b8_ /* This file is in the public domain. */ /* * Key-generation and related utilities. These implement the * corresponding command-line options. * * Necessary data like key file names, key types, passphrases, etc, * come from the config machinery (which means, the config file, the * command line, defaults, etc). */ #include /* * Generate a key. */ extern void gen_key(void); /* * Set the passphrase on a key. */ extern void set_passphrase(void); /* * Set the comment on a key. */ extern void set_comment(void); #endif