mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-02-19 15:26:52 +00:00
upstream: refer to OpenSSL not SSLeay;
we're old, but we don't have to act it OpenBSD-Commit-ID: 9ca38d11f8ed19e61a55108d1e892d696cee08ec
This commit is contained in:
parent
c0a3526590
commit
a65784c9f9
7
OVERVIEW
7
OVERVIEW
@ -34,11 +34,12 @@ these programs.
|
|||||||
|
|
||||||
- Ssh contains several encryption algorithms. These are all
|
- Ssh contains several encryption algorithms. These are all
|
||||||
accessed through the cipher.h interface. The interface code is
|
accessed through the cipher.h interface. The interface code is
|
||||||
in cipher.c, and the implementations are in libc.
|
in cipher.c, and the implementations are either in libc or
|
||||||
|
LibreSSL.
|
||||||
|
|
||||||
Multiple Precision Integer Library
|
Multiple Precision Integer Library
|
||||||
|
|
||||||
- Uses the SSLeay BIGNUM sublibrary.
|
- Uses the LibreSSL BIGNUM sublibrary.
|
||||||
|
|
||||||
Random Numbers
|
Random Numbers
|
||||||
|
|
||||||
@ -158,4 +159,4 @@ these programs.
|
|||||||
uidswap.c uid-swapping
|
uidswap.c uid-swapping
|
||||||
xmalloc.c "safe" malloc routines
|
xmalloc.c "safe" malloc routines
|
||||||
|
|
||||||
$OpenBSD: OVERVIEW,v 1.14 2018/07/27 03:55:22 dtucker Exp $
|
$OpenBSD: OVERVIEW,v 1.15 2018/10/23 05:56:35 djm Exp $
|
||||||
|
6
ssh.c
6
ssh.c
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: ssh.c,v 1.494 2018/10/03 06:38:35 djm Exp $ */
|
/* $OpenBSD: ssh.c,v 1.495 2018/10/23 05:56:35 djm Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
@ -816,7 +816,7 @@ main(int ac, char **av)
|
|||||||
fprintf(stderr, "%s, %s\n",
|
fprintf(stderr, "%s, %s\n",
|
||||||
SSH_RELEASE,
|
SSH_RELEASE,
|
||||||
#ifdef WITH_OPENSSL
|
#ifdef WITH_OPENSSL
|
||||||
SSLeay_version(SSLEAY_VERSION)
|
OpenSSL_version(OPENSSL_VERSION)
|
||||||
#else
|
#else
|
||||||
"without OpenSSL"
|
"without OpenSSL"
|
||||||
#endif
|
#endif
|
||||||
@ -1085,7 +1085,7 @@ main(int ac, char **av)
|
|||||||
if (debug_flag)
|
if (debug_flag)
|
||||||
logit("%s, %s", SSH_RELEASE,
|
logit("%s, %s", SSH_RELEASE,
|
||||||
#ifdef WITH_OPENSSL
|
#ifdef WITH_OPENSSL
|
||||||
SSLeay_version(SSLEAY_VERSION)
|
OpenSSL_version(OPENSSL_VERSION)
|
||||||
#else
|
#else
|
||||||
"without OpenSSL"
|
"without OpenSSL"
|
||||||
#endif
|
#endif
|
||||||
|
6
sshd.c
6
sshd.c
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: sshd.c,v 1.516 2018/09/21 12:23:17 djm Exp $ */
|
/* $OpenBSD: sshd.c,v 1.517 2018/10/23 05:56:35 djm Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
@ -917,7 +917,7 @@ usage(void)
|
|||||||
fprintf(stderr, "%s, %s\n",
|
fprintf(stderr, "%s, %s\n",
|
||||||
SSH_RELEASE,
|
SSH_RELEASE,
|
||||||
#ifdef WITH_OPENSSL
|
#ifdef WITH_OPENSSL
|
||||||
SSLeay_version(SSLEAY_VERSION)
|
OpenSSL_version(OPENSSL_VERSION)
|
||||||
#else
|
#else
|
||||||
"without OpenSSL"
|
"without OpenSSL"
|
||||||
#endif
|
#endif
|
||||||
@ -1723,7 +1723,7 @@ main(int ac, char **av)
|
|||||||
|
|
||||||
debug("sshd version %s, %s", SSH_VERSION,
|
debug("sshd version %s, %s", SSH_VERSION,
|
||||||
#ifdef WITH_OPENSSL
|
#ifdef WITH_OPENSSL
|
||||||
SSLeay_version(SSLEAY_VERSION)
|
OpenSSL_version(OPENSSL_VERSION)
|
||||||
#else
|
#else
|
||||||
"without OpenSSL"
|
"without OpenSSL"
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user