Changeset 15462
- Timestamp:
- 2009-04-28T01:36:04+02:00 (9 years ago)
- Location:
- packages/net/openssh
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
packages/net/openssh/Makefile
r15247 r15462 9 9 10 10 PKG_NAME:=openssh 11 PKG_VERSION:=5. 0p111 PKG_VERSION:=5.2p1 12 12 PKG_RELEASE:=1 13 13 … … 18 18 ftp://ftp.belnet.be/packages/openbsd/OpenSSH/portable/ \ 19 19 ftp://ftp.de.openbsd.org/pub/unix/OpenBSD/OpenSSH/portable/ 20 PKG_MD5SUM:= 1f1dfaa775f33dd3328169de9bdc292a20 PKG_MD5SUM:=ada79c7328a8551bdf55c95e631e7dad 21 21 22 22 PKG_BUILD_DEPENDS:=libopenssl -
packages/net/openssh/patches/100-no_cast_fix.patch
r11535 r15462 1 1 --- a/cipher.c 2 2 +++ b/cipher.c 3 @@ -7 2,7 +72,9 @@3 @@ -73,7 +73,9 @@ struct Cipher { 4 4 5 { "3des-cbc", SSH_CIPHER_SSH2, 8, 24, 0, EVP_des_ede3_cbc },6 { "blowfish-cbc", SSH_CIPHER_SSH2, 8, 16, 0, EVP_bf_cbc },5 { "3des-cbc", SSH_CIPHER_SSH2, 8, 24, 0, 1, EVP_des_ede3_cbc }, 6 { "blowfish-cbc", SSH_CIPHER_SSH2, 8, 16, 0, 1, EVP_bf_cbc }, 7 7 +#ifndef OPENSSL_NO_CAST 8 { "cast128-cbc", SSH_CIPHER_SSH2, 8, 16, 0, EVP_cast5_cbc },8 { "cast128-cbc", SSH_CIPHER_SSH2, 8, 16, 0, 1, EVP_cast5_cbc }, 9 9 +#endif 10 { "arcfour", SSH_CIPHER_SSH2, 8, 16, 0, EVP_rc4 },11 { "arcfour128", SSH_CIPHER_SSH2, 8, 16, 1536, EVP_rc4 },12 { "arcfour256", SSH_CIPHER_SSH2, 8, 32, 1536, EVP_rc4 },10 { "arcfour", SSH_CIPHER_SSH2, 8, 16, 0, 0, EVP_rc4 }, 11 { "arcfour128", SSH_CIPHER_SSH2, 8, 16, 1536, 0, EVP_rc4 }, 12 { "arcfour256", SSH_CIPHER_SSH2, 8, 32, 1536, 0, EVP_rc4 }, -
packages/net/openssh/patches/110-no_ripemd_fix.patch
r11535 r15462 1 1 --- a/mac.c 2 2 +++ b/mac.c 3 @@ -59,8 +59,10 @@ 3 @@ -59,8 +59,10 @@ struct { 4 4 { "hmac-sha1-96", SSH_EVP, EVP_sha1, 96, -1, -1 }, 5 5 { "hmac-md5", SSH_EVP, EVP_md5, 0, -1, -1 },
Note: See TracChangeset
for help on using the changeset viewer.