Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members | Related Pages

wvsslhacks.c

Go to the documentation of this file.
00001 /* 00002 * Worldvisions Tunnel Vision Software: 00003 * Copyright (C) 1997-2002 Net Integration Technologies, Inc. 00004 * 00005 * Functions to make us compile with both newer and older versions of openssl. 00006 * 00007 * THIS FILE MUST BE COMPILED AS STANDARD C, NOT C++!!! 00008 * 00009 * See wvsslhacks.h. 00010 */ 00011 #include "wvsslhacks.h" 00012 00013 RSA *wv_d2i_RSAPublicKey(RSA **a, const unsigned char **pp, long length) 00014 { 00015 return d2i_RSAPublicKey(a, pp, length); 00016 } 00017 00018 00019 RSA *wv_d2i_RSAPrivateKey(RSA **a, const unsigned char **pp, long length) 00020 { 00021 return d2i_RSAPrivateKey(a, pp, length); 00022 } 00023 00024 00025 X509 *wv_d2i_X509(X509 **a, unsigned char **pp, long length) 00026 { 00027 return d2i_X509(a, pp, length); 00028 }

Generated on Tue Oct 5 01:09:21 2004 for WvStreams by doxygen 1.3.7