|
|
@ -46,7 +46,7 @@ |
|
|
|
* See the License for the specific language governing permissions and |
|
|
|
* limitations under the License. |
|
|
|
*/ |
|
|
|
#include "config.h" |
|
|
|
#include <netpgp/config.h> |
|
|
|
|
|
|
|
/* |
|
|
|
** Check to see if this machine uses EBCDIC. (Yes, believe it or |
|
|
@ -131,19 +131,19 @@ __RCSID("$NetBSD$"); |
|
|
|
#include <limits.h> |
|
|
|
#endif |
|
|
|
|
|
|
|
#include "errors.h" |
|
|
|
#include "crypto.h" |
|
|
|
#include "create.h" |
|
|
|
#include "signature.h" |
|
|
|
#include "packet.h" |
|
|
|
#include "packet-parse.h" |
|
|
|
#include "packet-show.h" |
|
|
|
#include "packet.h" |
|
|
|
#include "keyring.h" |
|
|
|
#include "readerwriter.h" |
|
|
|
#include "netpgpsdk.h" |
|
|
|
#include "netpgpdefs.h" |
|
|
|
#include "netpgpdigest.h" |
|
|
|
#include <netpgp/errors.h> |
|
|
|
#include <netpgp/crypto.h> |
|
|
|
#include <netpgp/create.h> |
|
|
|
#include <netpgp/signature.h> |
|
|
|
#include <netpgp/packet.h> |
|
|
|
#include <netpgp/packet-parse.h> |
|
|
|
#include <netpgp/packet-show.h> |
|
|
|
#include <netpgp/packet.h> |
|
|
|
#include <netpgp/keyring.h> |
|
|
|
#include <netpgp/readerwriter.h> |
|
|
|
#include <netpgp/netpgpsdk.h> |
|
|
|
#include <netpgp/netpgpdefs.h> |
|
|
|
#include <netpgp/netpgpdigest.h> |
|
|
|
|
|
|
|
#ifndef MIN |
|
|
|
#define MIN(a,b) (((a)<(b))?(a):(b)) |
|
|
@ -152,7 +152,7 @@ __RCSID("$NetBSD$"); |
|
|
|
#define MAX(a,b) (((a)>(b))?(a):(b)) |
|
|
|
#endif |
|
|
|
|
|
|
|
inline char A(char c) |
|
|
|
char A(char c) |
|
|
|
{ |
|
|
|
#if defined(NETPGP_EBCDIC) |
|
|
|
__e2a_l(&c,1); |
|
|
|