Merge in demo engines from 0.9.7-stable.
This commit is contained in:
114
demos/engines/zencod/Makefile
Normal file
114
demos/engines/zencod/Makefile
Normal file
@@ -0,0 +1,114 @@
|
||||
LIBNAME= libzencod
|
||||
SRC= hw_zencod.c
|
||||
OBJ= hw_zencod.o
|
||||
HEADER= hw_zencod.h
|
||||
|
||||
CC= gcc
|
||||
PIC= -fPIC
|
||||
CFLAGS= -g -I../../../include $(PIC) -DENGINE_DYNAMIC_SUPPORT -DFLAT_INC
|
||||
AR= ar r
|
||||
RANLIB= ranlib
|
||||
|
||||
LIB= $(LIBNAME).a
|
||||
SHLIB= $(LIBNAME).so
|
||||
|
||||
all:
|
||||
@echo 'Please choose a system to build on:'
|
||||
@echo ''
|
||||
@echo 'tru64: Tru64 Unix, Digital Unix, Digital OSF/1'
|
||||
@echo 'solaris: Solaris'
|
||||
@echo 'irix: IRIX'
|
||||
@echo 'hpux32: 32-bit HP/UX'
|
||||
@echo 'hpux64: 64-bit HP/UX'
|
||||
@echo 'aix: AIX'
|
||||
@echo 'gnu: Generic GNU-based system (gcc and GNU ld)'
|
||||
@echo ''
|
||||
|
||||
FORCE.update:
|
||||
update: FORCE.update
|
||||
perl ../../../util/mkerr.pl -conf hw_zencod.ec \
|
||||
-nostatic -staticloader -write hw_zencod.c
|
||||
|
||||
gnu: $(SHLIB).gnu
|
||||
tru64: $(SHLIB).tru64
|
||||
solaris: $(SHLIB).solaris
|
||||
irix: $(SHLIB).irix
|
||||
hpux32: $(SHLIB).hpux32
|
||||
hpux64: $(SHLIB).hpux64
|
||||
aix: $(SHLIB).aix
|
||||
|
||||
$(LIB): $(OBJ)
|
||||
$(AR) $(LIB) $(OBJ)
|
||||
- $(RANLIB) $(LIB)
|
||||
|
||||
LINK_SO= \
|
||||
ld -r -o $(LIBNAME).o $$ALLSYMSFLAGS $(LIB) && \
|
||||
(nm -Pg $(LIBNAME).o | grep ' [BDT] ' | cut -f1 -d' ' > $(LIBNAME).exp; \
|
||||
$$SHAREDCMD $$SHAREDFLAGS -o $(SHLIB) $(LIBNAME).o -L ../../.. -lcrypto -lc)
|
||||
|
||||
$(SHLIB).gnu: $(LIB)
|
||||
ALLSYMSFLAGS='--whole-archive' \
|
||||
SHAREDFLAGS='-shared -Wl,-soname=$(SHLIB)' \
|
||||
SHAREDCMD='$(CC)'; \
|
||||
$(LINK_SO)
|
||||
touch $(SHLIB).gnu
|
||||
$(SHLIB).tru64: $(LIB)
|
||||
ALLSYMSFLAGS='-all' \
|
||||
SHAREDFLAGS='-shared' \
|
||||
SHAREDCMD='$(CC)'; \
|
||||
$(LINK_SO)
|
||||
touch $(SHLIB).tru64
|
||||
$(SHLIB).solaris: $(LIB)
|
||||
ALLSYMSFLAGS='-z allextract' \
|
||||
SHAREDFLAGS='-G -h $(SHLIB)' \
|
||||
SHAREDCMD='$(CC)'; \
|
||||
$(LINK_SO)
|
||||
touch $(SHLIB).solaris
|
||||
$(SHLIB).irix: $(LIB)
|
||||
ALLSYMSFLAGS='-all' \
|
||||
SHAREDFLAGS='-shared -Wl,-soname,$(SHLIB)' \
|
||||
SHAREDCMD='$(CC)'; \
|
||||
$(LINK_SO)
|
||||
touch $(SHLIB).irix
|
||||
$(SHLIB).hpux32: $(LIB)
|
||||
ALLSYMSFLAGS='-Fl' \
|
||||
SHAREDFLAGS='+vnocompatwarnings -b -z +s +h $(SHLIB)' \
|
||||
SHAREDCMD='/usr/ccs/bin/ld'; \
|
||||
$(LINK_SO)
|
||||
touch $(SHLIB).hpux32
|
||||
$(SHLIB).hpux64: $(LIB)
|
||||
ALLSYMSFLAGS='+forceload' \
|
||||
SHAREDFLAGS='-b -z +h $(SHLIB)' \
|
||||
SHAREDCMD='/usr/ccs/bin/ld'; \
|
||||
$(LINK_SO)
|
||||
touch $(SHLIB).hpux64
|
||||
$(SHLIB).aix: $(LIB)
|
||||
ALLSYMSFLAGS='-bnogc' \
|
||||
SHAREDFLAGS='-G -bE:$(LIBNAME).exp -bM:SRE' \
|
||||
SHAREDCMD='$(CC)'; \
|
||||
$(LINK_SO)
|
||||
touch $(SHLIB).aix
|
||||
|
||||
depend:
|
||||
sed -e '/^# DO NOT DELETE.*/,$$d' < Makefile > Makefile.tmp
|
||||
echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp
|
||||
gcc -M $(CFLAGS) $(SRC) >> Makefile.tmp
|
||||
perl ../../../util/clean-depend.pl < Makefile.tmp > Makefile.new
|
||||
rm -f Makefile.tmp Makefile
|
||||
mv Makefile.new Makefile
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
rsaref.o: ../../../include/openssl/asn1.h ../../../include/openssl/bio.h
|
||||
rsaref.o: ../../../include/openssl/bn.h ../../../include/openssl/crypto.h
|
||||
rsaref.o: ../../../include/openssl/dh.h ../../../include/openssl/dsa.h
|
||||
rsaref.o: ../../../include/openssl/e_os2.h ../../../include/openssl/engine.h
|
||||
rsaref.o: ../../../include/openssl/err.h ../../../include/openssl/lhash.h
|
||||
rsaref.o: ../../../include/openssl/opensslconf.h
|
||||
rsaref.o: ../../../include/openssl/opensslv.h
|
||||
rsaref.o: ../../../include/openssl/ossl_typ.h ../../../include/openssl/rand.h
|
||||
rsaref.o: ../../../include/openssl/rsa.h ../../../include/openssl/safestack.h
|
||||
rsaref.o: ../../../include/openssl/stack.h ../../../include/openssl/symhacks.h
|
||||
rsaref.o: ../../../include/openssl/ui.h rsaref.c rsaref_err.c rsaref_err.h
|
||||
rsaref.o: source/des.h source/global.h source/md2.h source/md5.h source/rsa.h
|
||||
rsaref.o: source/rsaref.h
|
1736
demos/engines/zencod/hw_zencod.c
Normal file
1736
demos/engines/zencod/hw_zencod.c
Normal file
File diff suppressed because it is too large
Load Diff
8
demos/engines/zencod/hw_zencod.ec
Normal file
8
demos/engines/zencod/hw_zencod.ec
Normal file
@@ -0,0 +1,8 @@
|
||||
# configuration file for util/mkerr.pl
|
||||
#
|
||||
# use like this:
|
||||
#
|
||||
# perl ../../../util/mkerr.pl -conf hw_zencod.ec \
|
||||
# -nostatic -staticloader -write *.c
|
||||
|
||||
L ZENCOD hw_zencod_err.h hw_zencod_err.c
|
160
demos/engines/zencod/hw_zencod.h
Normal file
160
demos/engines/zencod/hw_zencod.h
Normal file
@@ -0,0 +1,160 @@
|
||||
/* File : /crypto/engine/vendor_defns/hw_zencod.h */
|
||||
/* ====================================================================
|
||||
* Written by Donnat Frederic (frederic.donnat@zencod.com) from ZENCOD
|
||||
* for "zencod" ENGINE integration in OpenSSL project.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _HW_ZENCOD_H_
|
||||
#define _HW_ZENCOD_H_
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#define ZENBRIDGE_MAX_KEYSIZE_RSA 2048
|
||||
#define ZENBRIDGE_MAX_KEYSIZE_RSA_CRT 1024
|
||||
#define ZENBRIDGE_MAX_KEYSIZE_DSA_SIGN 1024
|
||||
#define ZENBRIDGE_MAX_KEYSIZE_DSA_VRFY 1024
|
||||
|
||||
/* Library version computation */
|
||||
#define ZENBRIDGE_VERSION_MAJOR(x) (((x) >> 16) | 0xff)
|
||||
#define ZENBRIDGE_VERSION_MINOR(x) (((x) >> 8) | 0xff)
|
||||
#define ZENBRIDGE_VERSION_PATCH(x) (((x) >> 0) | 0xff)
|
||||
#define ZENBRIDGE_VERSION(x, y, z) ((x) << 16 | (y) << 8 | (z))
|
||||
|
||||
/*
|
||||
* Memory type
|
||||
*/
|
||||
typedef struct zencod_number_s {
|
||||
unsigned long len;
|
||||
unsigned char *data;
|
||||
} zen_nb_t;
|
||||
|
||||
#define KEY zen_nb_t
|
||||
|
||||
|
||||
/*
|
||||
* Misc
|
||||
*/
|
||||
typedef int t_zencod_lib_version (void);
|
||||
typedef int t_zencod_hw_version (void);
|
||||
typedef int t_zencod_test (void);
|
||||
typedef int t_zencod_dump_key (FILE *stream, char *msg, KEY *key);
|
||||
|
||||
|
||||
/*
|
||||
* Key managment tools
|
||||
*/
|
||||
typedef KEY *t_zencod_new_number (unsigned long len, unsigned char *data);
|
||||
typedef int t_zencod_init_number (KEY *n, unsigned long len, unsigned char *data);
|
||||
typedef unsigned long t_zencod_bytes2bits (unsigned char *n, unsigned long bytes);
|
||||
typedef unsigned long t_zencod_bits2bytes (unsigned long bits);
|
||||
|
||||
|
||||
/*
|
||||
* RSA API
|
||||
*/
|
||||
/* Compute modular exponential : y = x**e | n */
|
||||
typedef int t_zencod_rsa_mod_exp (KEY *y, KEY *x, KEY *n, KEY *e);
|
||||
/* Compute modular exponential : y1 = (x | p)**edp | p, y2 = (x | p)**edp | p, y = y2 + (qinv * (y1 - y2) | p) * q */
|
||||
typedef int t_zencod_rsa_mod_exp_crt (KEY *y, KEY *x, KEY *p, KEY *q,
|
||||
KEY *edp, KEY *edq, KEY *qinv);
|
||||
|
||||
|
||||
/*
|
||||
* DSA API
|
||||
*/
|
||||
typedef int t_zencod_dsa_do_sign (unsigned int hash, KEY *data, KEY *random,
|
||||
KEY *p, KEY *q, KEY *g, KEY *x, KEY *r, KEY *s);
|
||||
typedef int t_zencod_dsa_do_verify (unsigned int hash, KEY *data,
|
||||
KEY *p, KEY *q, KEY *g, KEY *y,
|
||||
KEY *r, KEY *s, KEY *v);
|
||||
|
||||
|
||||
/*
|
||||
* DH API
|
||||
*/
|
||||
/* Key generation : compute public value y = g**x | n */
|
||||
typedef int t_zencod_dh_generate_key (KEY *y, KEY *x, KEY *g, KEY *n, int gen_x);
|
||||
typedef int t_zencod_dh_compute_key (KEY *k, KEY *y, KEY *x, KEY *n);
|
||||
|
||||
|
||||
/*
|
||||
* RNG API
|
||||
*/
|
||||
#define ZENBRIDGE_RNG_DIRECT 0
|
||||
#define ZENBRIDGE_RNG_SHA1 1
|
||||
typedef int t_zencod_rand_bytes (KEY *rand, unsigned int flags);
|
||||
|
||||
|
||||
/*
|
||||
* Math API
|
||||
*/
|
||||
typedef int t_zencod_math_mod_exp (KEY *r, KEY *a, KEY *e, KEY *n);
|
||||
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* Symetric API
|
||||
*/
|
||||
/* Define a data structure for digests operations */
|
||||
typedef struct ZEN_data_st
|
||||
{
|
||||
unsigned int HashBufferSize ;
|
||||
unsigned char *HashBuffer ;
|
||||
} ZEN_MD_DATA ;
|
||||
|
||||
/*
|
||||
* Functions for Digest (MD5, SHA1) stuff
|
||||
*/
|
||||
/* output : output data buffer */
|
||||
/* input : input data buffer */
|
||||
/* algo : hash algorithm, MD5 or SHA1 */
|
||||
/* typedef int t_zencod_hash ( KEY *output, const KEY *input, int algo ) ;
|
||||
* typedef int t_zencod_sha_hash ( KEY *output, const KEY *input, int algo ) ;
|
||||
*/
|
||||
/* For now separate this stuff that mad it easier to test */
|
||||
typedef int t_zencod_md5_init ( ZEN_MD_DATA *data ) ;
|
||||
typedef int t_zencod_md5_update ( ZEN_MD_DATA *data, const KEY *input ) ;
|
||||
typedef int t_zencod_md5_do_final ( ZEN_MD_DATA *data, KEY *output ) ;
|
||||
|
||||
typedef int t_zencod_sha1_init ( ZEN_MD_DATA *data ) ;
|
||||
typedef int t_zencod_sha1_update ( ZEN_MD_DATA *data, const KEY *input ) ;
|
||||
typedef int t_zencod_sha1_do_final ( ZEN_MD_DATA *data, KEY *output ) ;
|
||||
|
||||
|
||||
/*
|
||||
* Functions for Cipher (RC4, DES, 3DES) stuff
|
||||
*/
|
||||
/* output : output data buffer */
|
||||
/* input : input data buffer */
|
||||
/* key : rc4 key data */
|
||||
/* index_1 : value of index x from RC4 key structure */
|
||||
/* index_2 : value of index y from RC4 key structure */
|
||||
/* Be carefull : RC4 key should be expanded before calling this method (Should we provide an expand function ??) */
|
||||
typedef int t_zencod_rc4_cipher ( KEY *output, const KEY *input, const KEY *key,
|
||||
unsigned char *index_1, unsigned char *index_2, int mode ) ;
|
||||
|
||||
/* output : output data buffer */
|
||||
/* input : input data buffer */
|
||||
/* key_1 : des first key data */
|
||||
/* key_2 : des second key data */
|
||||
/* key_3 : des third key data */
|
||||
/* iv : initial vector */
|
||||
/* mode : xdes mode (encrypt or decrypt) */
|
||||
/* Be carefull : In DES mode key_1 = key_2 = key_3 (as far as i can see !!) */
|
||||
typedef int t_zencod_xdes_cipher ( KEY *output, const KEY *input, const KEY *key_1,
|
||||
const KEY *key_2, const KEY *key_3, const KEY *iv, int mode ) ;
|
||||
|
||||
|
||||
#undef KEY
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#endif /* !_HW_ZENCOD_H_ */
|
151
demos/engines/zencod/hw_zencod_err.c
Normal file
151
demos/engines/zencod/hw_zencod_err.c
Normal file
@@ -0,0 +1,151 @@
|
||||
/* hw_zencod_err.c */
|
||||
/* ====================================================================
|
||||
* Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
*
|
||||
* 3. All advertising materials mentioning features or use of this
|
||||
* software must display the following acknowledgment:
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
* for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
|
||||
*
|
||||
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
||||
* endorse or promote products derived from this software without
|
||||
* prior written permission. For written permission, please contact
|
||||
* openssl-core@OpenSSL.org.
|
||||
*
|
||||
* 5. Products derived from this software may not be called "OpenSSL"
|
||||
* nor may "OpenSSL" appear in their names without prior written
|
||||
* permission of the OpenSSL Project.
|
||||
*
|
||||
* 6. Redistributions of any form whatsoever must retain the following
|
||||
* acknowledgment:
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
* for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
||||
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
||||
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
* ====================================================================
|
||||
*
|
||||
* This product includes cryptographic software written by Eric Young
|
||||
* (eay@cryptsoft.com). This product includes software written by Tim
|
||||
* Hudson (tjh@cryptsoft.com).
|
||||
*
|
||||
*/
|
||||
|
||||
/* NOTE: this file was auto generated by the mkerr.pl script: any changes
|
||||
* made to it will be overwritten when the script next updates this file,
|
||||
* only reason strings will be preserved.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <openssl/err.h>
|
||||
#include "hw_zencod_err.h"
|
||||
|
||||
/* BEGIN ERROR CODES */
|
||||
#ifndef OPENSSL_NO_ERR
|
||||
static ERR_STRING_DATA ZENCOD_str_functs[]=
|
||||
{
|
||||
{ERR_PACK(0,ZENCOD_F_ZENCOD_BN_MOD_EXP,0), "ZENCOD_BN_MOD_EXP"},
|
||||
{ERR_PACK(0,ZENCOD_F_ZENCOD_CTRL,0), "ZENCOD_CTRL"},
|
||||
{ERR_PACK(0,ZENCOD_F_ZENCOD_DH_COMPUTE,0), "ZENCOD_DH_COMPUTE"},
|
||||
{ERR_PACK(0,ZENCOD_F_ZENCOD_DH_GENERATE,0), "ZENCOD_DH_GENERATE"},
|
||||
{ERR_PACK(0,ZENCOD_F_ZENCOD_DSA_DO_SIGN,0), "ZENCOD_DSA_DO_SIGN"},
|
||||
{ERR_PACK(0,ZENCOD_F_ZENCOD_DSA_DO_VERIFY,0), "ZENCOD_DSA_DO_VERIFY"},
|
||||
{ERR_PACK(0,ZENCOD_F_ZENCOD_FINISH,0), "ZENCOD_FINISH"},
|
||||
{ERR_PACK(0,ZENCOD_F_ZENCOD_INIT,0), "ZENCOD_INIT"},
|
||||
{ERR_PACK(0,ZENCOD_F_ZENCOD_RAND,0), "ZENCOD_RAND"},
|
||||
{ERR_PACK(0,ZENCOD_F_ZENCOD_RSA_MOD_EXP,0), "ZENCOD_RSA_MOD_EXP"},
|
||||
{ERR_PACK(0,ZENCOD_F_ZENCOD_RSA_MOD_EXP_CRT,0), "ZENCOD_RSA_MOD_EXP_CRT"},
|
||||
{0,NULL}
|
||||
};
|
||||
|
||||
static ERR_STRING_DATA ZENCOD_str_reasons[]=
|
||||
{
|
||||
{ZENCOD_R_ALREADY_LOADED ,"already loaded"},
|
||||
{ZENCOD_R_BAD_KEY_COMPONENTS ,"bad key components"},
|
||||
{ZENCOD_R_BN_EXPAND_FAIL ,"bn expand fail"},
|
||||
{ZENCOD_R_CTRL_COMMAND_NOT_IMPLEMENTED ,"ctrl command not implemented"},
|
||||
{ZENCOD_R_DSO_FAILURE ,"dso failure"},
|
||||
{ZENCOD_R_NOT_LOADED ,"not loaded"},
|
||||
{ZENCOD_R_REQUEST_FAILED ,"request failed"},
|
||||
{ZENCOD_R_UNIT_FAILURE ,"unit failure"},
|
||||
{0,NULL}
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef ZENCOD_LIB_NAME
|
||||
static ERR_STRING_DATA ZENCOD_lib_name[]=
|
||||
{
|
||||
{0 ,ZENCOD_LIB_NAME},
|
||||
{0,NULL}
|
||||
};
|
||||
#endif
|
||||
|
||||
|
||||
static int ZENCOD_lib_error_code=0;
|
||||
static int ZENCOD_error_init=1;
|
||||
|
||||
static void ERR_load_ZENCOD_strings(void)
|
||||
{
|
||||
if (ZENCOD_lib_error_code == 0)
|
||||
ZENCOD_lib_error_code=ERR_get_next_error_library();
|
||||
|
||||
if (ZENCOD_error_init)
|
||||
{
|
||||
ZENCOD_error_init=0;
|
||||
#ifndef OPENSSL_NO_ERR
|
||||
ERR_load_strings(ZENCOD_lib_error_code,ZENCOD_str_functs);
|
||||
ERR_load_strings(ZENCOD_lib_error_code,ZENCOD_str_reasons);
|
||||
#endif
|
||||
|
||||
#ifdef ZENCOD_LIB_NAME
|
||||
ZENCOD_lib_name->error = ERR_PACK(ZENCOD_lib_error_code,0,0);
|
||||
ERR_load_strings(0,ZENCOD_lib_name);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
static void ERR_unload_ZENCOD_strings(void)
|
||||
{
|
||||
if (ZENCOD_error_init == 0)
|
||||
{
|
||||
#ifndef OPENSSL_NO_ERR
|
||||
ERR_unload_strings(ZENCOD_lib_error_code,ZENCOD_str_functs);
|
||||
ERR_unload_strings(ZENCOD_lib_error_code,ZENCOD_str_reasons);
|
||||
#endif
|
||||
|
||||
#ifdef ZENCOD_LIB_NAME
|
||||
ERR_unload_strings(0,ZENCOD_lib_name);
|
||||
#endif
|
||||
ZENCOD_error_init=1;
|
||||
}
|
||||
}
|
||||
|
||||
static void ERR_ZENCOD_error(int function, int reason, char *file, int line)
|
||||
{
|
||||
if (ZENCOD_lib_error_code == 0)
|
||||
ZENCOD_lib_error_code=ERR_get_next_error_library();
|
||||
ERR_PUT_error(ZENCOD_lib_error_code,function,reason,file,line);
|
||||
}
|
95
demos/engines/zencod/hw_zencod_err.h
Normal file
95
demos/engines/zencod/hw_zencod_err.h
Normal file
@@ -0,0 +1,95 @@
|
||||
/* ====================================================================
|
||||
* Copyright (c) 2001-2002 The OpenSSL Project. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
*
|
||||
* 3. All advertising materials mentioning features or use of this
|
||||
* software must display the following acknowledgment:
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
||||
*
|
||||
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
||||
* endorse or promote products derived from this software without
|
||||
* prior written permission. For written permission, please contact
|
||||
* openssl-core@openssl.org.
|
||||
*
|
||||
* 5. Products derived from this software may not be called "OpenSSL"
|
||||
* nor may "OpenSSL" appear in their names without prior written
|
||||
* permission of the OpenSSL Project.
|
||||
*
|
||||
* 6. Redistributions of any form whatsoever must retain the following
|
||||
* acknowledgment:
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
||||
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
||||
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
* ====================================================================
|
||||
*
|
||||
* This product includes cryptographic software written by Eric Young
|
||||
* (eay@cryptsoft.com). This product includes software written by Tim
|
||||
* Hudson (tjh@cryptsoft.com).
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef HEADER_ZENCOD_ERR_H
|
||||
#define HEADER_ZENCOD_ERR_H
|
||||
|
||||
/* BEGIN ERROR CODES */
|
||||
/* The following lines are auto generated by the script mkerr.pl. Any changes
|
||||
* made after this point may be overwritten when the script is next run.
|
||||
*/
|
||||
static void ERR_load_ZENCOD_strings(void);
|
||||
static void ERR_unload_ZENCOD_strings(void);
|
||||
static void ERR_ZENCOD_error(int function, int reason, char *file, int line);
|
||||
#define ZENCODerr(f,r) ERR_ZENCOD_error((f),(r),__FILE__,__LINE__)
|
||||
|
||||
/* Error codes for the ZENCOD functions. */
|
||||
|
||||
/* Function codes. */
|
||||
#define ZENCOD_F_ZENCOD_BN_MOD_EXP 100
|
||||
#define ZENCOD_F_ZENCOD_CTRL 101
|
||||
#define ZENCOD_F_ZENCOD_DH_COMPUTE 102
|
||||
#define ZENCOD_F_ZENCOD_DH_GENERATE 103
|
||||
#define ZENCOD_F_ZENCOD_DSA_DO_SIGN 104
|
||||
#define ZENCOD_F_ZENCOD_DSA_DO_VERIFY 105
|
||||
#define ZENCOD_F_ZENCOD_FINISH 106
|
||||
#define ZENCOD_F_ZENCOD_INIT 107
|
||||
#define ZENCOD_F_ZENCOD_RAND 108
|
||||
#define ZENCOD_F_ZENCOD_RSA_MOD_EXP 109
|
||||
#define ZENCOD_F_ZENCOD_RSA_MOD_EXP_CRT 110
|
||||
|
||||
/* Reason codes. */
|
||||
#define ZENCOD_R_ALREADY_LOADED 100
|
||||
#define ZENCOD_R_BAD_KEY_COMPONENTS 101
|
||||
#define ZENCOD_R_BN_EXPAND_FAIL 102
|
||||
#define ZENCOD_R_CTRL_COMMAND_NOT_IMPLEMENTED 103
|
||||
#define ZENCOD_R_DSO_FAILURE 104
|
||||
#define ZENCOD_R_NOT_LOADED 105
|
||||
#define ZENCOD_R_REQUEST_FAILED 106
|
||||
#define ZENCOD_R_UNIT_FAILURE 107
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
Reference in New Issue
Block a user