diff options
-rw-r--r-- | OVERVIEW | 7 | ||||
-rw-r--r-- | ssh.c | 6 | ||||
-rw-r--r-- | sshd.c | 6 |
3 files changed, 10 insertions, 9 deletions
@@ -34,11 +34,12 @@ these programs. | |||
34 | 34 | ||
35 | - Ssh contains several encryption algorithms. These are all | 35 | - Ssh contains several encryption algorithms. These are all |
36 | accessed through the cipher.h interface. The interface code is | 36 | accessed through the cipher.h interface. The interface code is |
37 | in cipher.c, and the implementations are in libc. | 37 | in cipher.c, and the implementations are either in libc or |
38 | LibreSSL. | ||
38 | 39 | ||
39 | Multiple Precision Integer Library | 40 | Multiple Precision Integer Library |
40 | 41 | ||
41 | - Uses the SSLeay BIGNUM sublibrary. | 42 | - Uses the LibreSSL BIGNUM sublibrary. |
42 | 43 | ||
43 | Random Numbers | 44 | Random Numbers |
44 | 45 | ||
@@ -158,4 +159,4 @@ these programs. | |||
158 | uidswap.c uid-swapping | 159 | uidswap.c uid-swapping |
159 | xmalloc.c "safe" malloc routines | 160 | xmalloc.c "safe" malloc routines |
160 | 161 | ||
161 | $OpenBSD: OVERVIEW,v 1.14 2018/07/27 03:55:22 dtucker Exp $ | 162 | $OpenBSD: OVERVIEW,v 1.15 2018/10/23 05:56:35 djm Exp $ |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssh.c,v 1.494 2018/10/03 06:38:35 djm Exp $ */ | 1 | /* $OpenBSD: ssh.c,v 1.495 2018/10/23 05:56:35 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -816,7 +816,7 @@ main(int ac, char **av) | |||
816 | fprintf(stderr, "%s, %s\n", | 816 | fprintf(stderr, "%s, %s\n", |
817 | SSH_RELEASE, | 817 | SSH_RELEASE, |
818 | #ifdef WITH_OPENSSL | 818 | #ifdef WITH_OPENSSL |
819 | SSLeay_version(SSLEAY_VERSION) | 819 | OpenSSL_version(OPENSSL_VERSION) |
820 | #else | 820 | #else |
821 | "without OpenSSL" | 821 | "without OpenSSL" |
822 | #endif | 822 | #endif |
@@ -1085,7 +1085,7 @@ main(int ac, char **av) | |||
1085 | if (debug_flag) | 1085 | if (debug_flag) |
1086 | logit("%s, %s", SSH_RELEASE, | 1086 | logit("%s, %s", SSH_RELEASE, |
1087 | #ifdef WITH_OPENSSL | 1087 | #ifdef WITH_OPENSSL |
1088 | SSLeay_version(SSLEAY_VERSION) | 1088 | OpenSSL_version(OPENSSL_VERSION) |
1089 | #else | 1089 | #else |
1090 | "without OpenSSL" | 1090 | "without OpenSSL" |
1091 | #endif | 1091 | #endif |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sshd.c,v 1.516 2018/09/21 12:23:17 djm Exp $ */ | 1 | /* $OpenBSD: sshd.c,v 1.517 2018/10/23 05:56:35 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -917,7 +917,7 @@ usage(void) | |||
917 | fprintf(stderr, "%s, %s\n", | 917 | fprintf(stderr, "%s, %s\n", |
918 | SSH_RELEASE, | 918 | SSH_RELEASE, |
919 | #ifdef WITH_OPENSSL | 919 | #ifdef WITH_OPENSSL |
920 | SSLeay_version(SSLEAY_VERSION) | 920 | OpenSSL_version(OPENSSL_VERSION) |
921 | #else | 921 | #else |
922 | "without OpenSSL" | 922 | "without OpenSSL" |
923 | #endif | 923 | #endif |
@@ -1723,7 +1723,7 @@ main(int ac, char **av) | |||
1723 | 1723 | ||
1724 | debug("sshd version %s, %s", SSH_VERSION, | 1724 | debug("sshd version %s, %s", SSH_VERSION, |
1725 | #ifdef WITH_OPENSSL | 1725 | #ifdef WITH_OPENSSL |
1726 | SSLeay_version(SSLEAY_VERSION) | 1726 | OpenSSL_version(OPENSSL_VERSION) |
1727 | #else | 1727 | #else |
1728 | "without OpenSSL" | 1728 | "without OpenSSL" |
1729 | #endif | 1729 | #endif |