#ifndef _KEYUTILS_H_ebe9cc9e_ #define _KEYUTILS_H_ebe9cc9e_ /* This file is in the public domain. */ /* * Key-related utilities. These are implementations of key-data * processing command-line options. */ /* * Import a key: read interchange format from stdin and write our * format to stdout. */ extern void do_import(void); /* * Export a key: read our format from stdin and write interchange * format to stdout. */ extern void do_export(void); /* * Compute fingerprints: read a key (in our format) from stdin and * print its fingerprint on stdout. */ extern void do_fingerprint(void); #endif