1178354Ssam/* crypto/des/des_ver.h */
2178354Ssam/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3178354Ssam * All rights reserved.
4178354Ssam *
5178354Ssam * This package is an SSL implementation written
6178354Ssam * by Eric Young (eay@cryptsoft.com).
7178354Ssam * The implementation was written so as to conform with Netscapes SSL.
8178354Ssam *
9178354Ssam * This library is free for commercial and non-commercial use as long as
10178354Ssam * the following conditions are aheared to.  The following conditions
11178354Ssam * apply to all code found in this distribution, be it the RC4, RSA,
12178354Ssam * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13178354Ssam * included with this distribution is covered by the same copyright terms
14178354Ssam * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15178354Ssam *
16178354Ssam * Copyright remains Eric Young's, and as such any Copyright notices in
17178354Ssam * the code are not to be removed.
18178354Ssam * If this package is used in a product, Eric Young should be given attribution
19178354Ssam * as the author of the parts of the library used.
20178354Ssam * This can be in the form of a textual message at program startup or
21178354Ssam * in documentation (online or textual) provided with the package.
22178354Ssam *
23178354Ssam * Redistribution and use in source and binary forms, with or without
24178354Ssam * modification, are permitted provided that the following conditions
25178354Ssam * are met:
26178354Ssam * 1. Redistributions of source code must retain the copyright
27178354Ssam *    notice, this list of conditions and the following disclaimer.
28178354Ssam * 2. Redistributions in binary form must reproduce the above copyright
29178354Ssam *    notice, this list of conditions and the following disclaimer in the
30178354Ssam *    documentation and/or other materials provided with the distribution.
31178354Ssam * 3. All advertising materials mentioning features or use of this software
32178354Ssam *    must display the following acknowledgement:
33178354Ssam *    "This product includes cryptographic software written by
34178354Ssam *     Eric Young (eay@cryptsoft.com)"
35178354Ssam *    The word 'cryptographic' can be left out if the rouines from the library
36178354Ssam *    being used are not cryptographic related :-).
37178354Ssam * 4. If you include any Windows specific code (or a derivative thereof) from
38178354Ssam *    the apps directory (application code) you must include an acknowledgement:
39178354Ssam *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40178354Ssam *
41178354Ssam * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42178354Ssam * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43178354Ssam * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44178354Ssam * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45178354Ssam * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46178354Ssam * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47178354Ssam * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48178354Ssam * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49178354Ssam * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50178354Ssam * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51178354Ssam * SUCH DAMAGE.
52178354Ssam *
53178354Ssam * The licence and distribution terms for any publically available version or
54178354Ssam * derivative of this code cannot be changed.  i.e. this code cannot simply be
55178354Ssam * copied and put under another distribution licence
56178354Ssam * [including the GNU Public Licence.]
57178354Ssam */
58178354Ssam
59178354Ssam#include <openssl/e_os2.h>
60190391Ssam
61190391Ssam#ifdef OPENSSL_BUILD_SHLIBCRYPTO
62190391Ssam# undef OPENSSL_EXTERN
63178354Ssam# define OPENSSL_EXTERN OPENSSL_EXPORT
64178354Ssam#endif
65178354Ssam
66192468Ssam/* The following macros make sure the names are different from libdes names */
67178354Ssam#define DES_version OSSL_DES_version
68192468Ssam#define libdes_version OSSL_libdes_version
69178354Ssam
70178354Ssam/* SSLeay version string */
71178354SsamOPENSSL_EXTERN const char OSSL_DES_version[];
72178354Ssam/* old libdes version string */
73178354SsamOPENSSL_EXTERN const char OSSL_libdes_version[];
74178354Ssam