- hshoexer@cvs.openbsd.org 2004/01/23 19:26:33
[cipher.c] rename acss@opebsd.org to acss@openssh.org ok deraadt@
This commit is contained in:
parent
b21be84471
commit
b2d1c2b3b8
|
@ -8,6 +8,10 @@
|
||||||
[sftp-int.c]
|
[sftp-int.c]
|
||||||
Fix issue pointed out with ls not handling large directories
|
Fix issue pointed out with ls not handling large directories
|
||||||
with embeded paths correctly. OK damien@
|
with embeded paths correctly. OK damien@
|
||||||
|
- hshoexer@cvs.openbsd.org 2004/01/23 19:26:33
|
||||||
|
[cipher.c]
|
||||||
|
rename acss@opebsd.org to acss@openssh.org
|
||||||
|
ok deraadt@
|
||||||
- (djm) [acss.c acss.h cipher-acss.c] Portable support for ACSS
|
- (djm) [acss.c acss.h cipher-acss.c] Portable support for ACSS
|
||||||
if libcrypto lacks it
|
if libcrypto lacks it
|
||||||
|
|
||||||
|
@ -1750,4 +1754,4 @@
|
||||||
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
||||||
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3194 2004/01/27 10:20:11 djm Exp $
|
$Id: ChangeLog,v 1.3195 2004/01/27 10:20:59 djm Exp $
|
||||||
|
|
4
cipher.c
4
cipher.c
|
@ -35,7 +35,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: cipher.c,v 1.67 2004/01/23 17:06:03 hshoexer Exp $");
|
RCSID("$OpenBSD: cipher.c,v 1.68 2004/01/23 19:26:33 hshoexer Exp $");
|
||||||
|
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
@ -104,7 +104,7 @@ struct Cipher {
|
||||||
{ "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, evp_aes_128_ctr },
|
{ "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, evp_aes_128_ctr },
|
||||||
#endif
|
#endif
|
||||||
#if defined(EVP_CTRL_SET_ACSS_MODE)
|
#if defined(EVP_CTRL_SET_ACSS_MODE)
|
||||||
{ "acss@openbsd.org", SSH_CIPHER_SSH2, 16, 5, EVP_acss },
|
{ "acss@openssh.org", SSH_CIPHER_SSH2, 16, 5, EVP_acss },
|
||||||
#endif
|
#endif
|
||||||
{ NULL, SSH_CIPHER_ILLEGAL, 0, 0, NULL }
|
{ NULL, SSH_CIPHER_ILLEGAL, 0, 0, NULL }
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue