diff options
author | beck <> | 2000-03-19 11:13:58 +0000 |
---|---|---|
committer | beck <> | 2000-03-19 11:13:58 +0000 |
commit | 796d609550df3a33fc11468741c5d2f6d3df4c11 (patch) | |
tree | 6c6d539061caa20372dad0ac4ddb1dfae2fbe7fe /src/lib/libcrypto/ebcdic.h | |
parent | 5be3114c1fd7e0dfea1e38d3abb4cbba75244419 (diff) | |
download | openbsd-796d609550df3a33fc11468741c5d2f6d3df4c11.tar.gz openbsd-796d609550df3a33fc11468741c5d2f6d3df4c11.tar.bz2 openbsd-796d609550df3a33fc11468741c5d2f6d3df4c11.zip |
OpenSSL 0.9.5 merge
*warning* this bumps shared lib minors for libssl and libcrypto from 2.1 to 2.2
if you are using the ssl26 packages for ssh and other things to work you will
need to get new ones (see ~beck/libsslsnap/<arch>) on cvs or ~beck/src-patent.tar.gz on cvs
Diffstat (limited to 'src/lib/libcrypto/ebcdic.h')
-rw-r--r-- | src/lib/libcrypto/ebcdic.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/lib/libcrypto/ebcdic.h b/src/lib/libcrypto/ebcdic.h index d3b4e98b12..6d65afcf9e 100644 --- a/src/lib/libcrypto/ebcdic.h +++ b/src/lib/libcrypto/ebcdic.h | |||
@@ -1,17 +1,19 @@ | |||
1 | /* crypto/ebcdic.h */ | ||
2 | |||
1 | #ifndef HEADER_EBCDIC_H | 3 | #ifndef HEADER_EBCDIC_H |
2 | #define HEADER_EBCDIC_H | 4 | #define HEADER_EBCDIC_H |
3 | 5 | ||
4 | #include <sys/types.h> | 6 | #include <sys/types.h> |
5 | 7 | ||
6 | /* Avoid name clashes with other applications */ | 8 | /* Avoid name clashes with other applications */ |
7 | #define os_toascii _eay2000_os_toascii | 9 | #define os_toascii _openssl_os_toascii |
8 | #define os_toebcdic _eay2000_os_toebcdic | 10 | #define os_toebcdic _openssl_os_toebcdic |
9 | #define ebcdic2ascii _eay2000_ebcdic2ascii | 11 | #define ebcdic2ascii _openssl_ebcdic2ascii |
10 | #define ascii2ebcdic _eay2000_ascii2ebcdic | 12 | #define ascii2ebcdic _openssl_ascii2ebcdic |
11 | 13 | ||
12 | extern const unsigned char os_toascii[256]; | 14 | extern const unsigned char os_toascii[256]; |
13 | extern const unsigned char os_toebcdic[256]; | 15 | extern const unsigned char os_toebcdic[256]; |
14 | void ebcdic2ascii(unsigned char *dest, const unsigned char *srce, size_t count); | 16 | void *ebcdic2ascii(void *dest, const void *srce, size_t count); |
15 | void ascii2ebcdic(unsigned char *dest, const unsigned char *srce, size_t count); | 17 | void *ascii2ebcdic(void *dest, const void *srce, size_t count); |
16 | 18 | ||
17 | #endif | 19 | #endif |