22 lines
733 B
C
22 lines
733 B
C
/* $NetBSD: algobj.h,v 1.1.1.1 2001/05/17 20:47:09 itojun Exp $ */
|
|
|
|
/* Copyright (C) RSA Data Security, Inc. created 1990, 1996. This is an
|
|
unpublished work protected as such under copyright law. This work
|
|
contains proprietary, confidential, and trade secret information of
|
|
RSA Data Security, Inc. Use, disclosure or reproduction without the
|
|
express written authorization of RSA Data Security, Inc. is
|
|
prohibited.
|
|
*/
|
|
|
|
#define THE_ALG_WRAP ((AlgorithmWrap *)algorithmObject)
|
|
|
|
typedef struct AlgorithmWrap {
|
|
B_Algorithm algorithm;
|
|
char *typeTag;
|
|
struct AlgorithmWrap *selfCheck;
|
|
} AlgorithmWrap;
|
|
|
|
int AlgorithmWrapCheck PROTO_LIST ((AlgorithmWrap *));
|
|
int RandomAlgorithmCheck PROTO_LIST ((B_ALGORITHM_OBJ));
|
|
|