Package: openssh-ssh1
Version: 1:7.5p1-18
Severity: normal
Tags: sid
control: affects -1 src:openssl
User: [email protected]
Usertags: openssl-4.0

OpenSSL 4.0 is in experimental. This package fails to build against it:
| 
| gcc -g -O2 -Werror=implicit-function-declaration 
-ffile-prefix-map=/build/reproducible-path/openssh-ssh1-7.5p1=. 
-fstack-protector-strong -fstack-clash-protection -Wformat 
-Werror=format-security -fcf-protection -Wall -Wpointer-arith -Wuninitialized 
-Wsign-compare -Wformat-security -Wsizeof-pointer-memaccess -Wno-pointer-sign 
-Wno-unused-result -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -ftrapv 
-fno-builtin-memset -fstack-protector-strong -Wdate-time -D_FORTIFY_SOURCE=2 -g 
-O2 -Werror=implicit-function-declaration 
-ffile-prefix-map=/build/reproducible-path/openssh-ssh1-7.5p1=. 
-fstack-protector-strong -fstack-clash-protection -Wformat 
-Werror=format-security -fcf-protection -DSSH_EXTRAVERSION=\"Debian-18\"  -I. 
-I../.. -Wdate-time -D_FORTIFY_SOURCE=2 -D_XOPEN_SOURCE=600 -D_BSD_SOURCE 
-D_DEFAULT_SOURCE -DSSHDIR=\"/etc/ssh\" -D_PATH_SSH_PROGRAM=\"/usr/bin/ssh1\" 
-D_PATH_SSH_ASKPASS_DEFAULT=\"/usr/bin/ssh-askpass\" 
-D_PATH_SFTP_SERVER=\"/usr/lib/openssh/sftp-server\" 
-D_PATH_SSH_KEY_SIGN=\"/usr/lib/openssh/ssh-keysign\" 
-D_PATH_SSH_PKCS11_HELPER=\"/usr/lib/openssh/ssh-pkcs11-helper\" 
-D_PATH_SSH_PIDDIR=\"/var/run\" -D_PATH_PRIVSEP_CHROOT_DIR=\"/var/empty\" 
-DHAVE_CONFIG_H -c ../../cipher-bf1.c -o cipher-bf1.o
| ../../cipher-bf1.c: In function ‘evp_ssh1_bf’:
| ../../cipher-bf1.c:94:19: error: implicit declaration of function 
‘EVP_CIPHER_meth_get_do_cipher’; did you mean 
‘EVP_CIPHER_CTX_get1_cipher’? [-Wimplicit-function-declaration]
|    94 |         orig_bf = EVP_CIPHER_meth_get_do_cipher(EVP_bf_cbc());
|       |                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|       |                   EVP_CIPHER_CTX_get1_cipher
| ../../cipher-bf1.c:94:17: error: assignment to ‘int (*)(EVP_CIPHER_CTX *, 
u_char *, const u_char *, size_t)’ {aka ‘int (*)(struct evp_cipher_ctx_st 
*, unsigned char *, const unsigned char *, long unsigned int)’} from 
‘int’ makes pointer from integer without a cast [-Wint-conversion]
|    94 |         orig_bf = EVP_CIPHER_meth_get_do_cipher(EVP_bf_cbc());
|       |                 ^
| ../../cipher-bf1.c:96:19: error: implicit declaration of function 
‘EVP_CIPHER_meth_new’; did you mean ‘EVP_CIPHER_CTX_new’? 
[-Wimplicit-function-declaration]
|    96 |         ssh1_bf = EVP_CIPHER_meth_new(NID_undef, 8, 32);
|       |                   ^~~~~~~~~~~~~~~~~~~
|       |                   EVP_CIPHER_CTX_new
| ../../cipher-bf1.c:96:17: error: assignment to ‘EVP_CIPHER *’ {aka 
‘struct evp_cipher_st *’} from ‘int’ makes pointer from integer without 
a cast [-Wint-conversion]
|    96 |         ssh1_bf = EVP_CIPHER_meth_new(NID_undef, 8, 32);
|       |                 ^
| ../../cipher-bf1.c:97:9: error: implicit declaration of function 
‘EVP_CIPHER_meth_set_iv_length’; did you mean 
‘EVP_CIPHER_CTX_get_iv_length’? [-Wimplicit-function-declaration]
|    97 |         EVP_CIPHER_meth_set_iv_length(ssh1_bf, 8);
|       |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|       |         EVP_CIPHER_CTX_get_iv_length
| ../../cipher-bf1.c:98:9: error: implicit declaration of function 
‘EVP_CIPHER_meth_set_flags’; did you mean ‘EVP_CIPHER_CTX_set_flags’? 
[-Wimplicit-function-declaration]
|    98 |         EVP_CIPHER_meth_set_flags(ssh1_bf, EVP_CIPH_CBC_MODE);
|       |         ^~~~~~~~~~~~~~~~~~~~~~~~~
|       |         EVP_CIPHER_CTX_set_flags
| ../../cipher-bf1.c:102:9: error: implicit declaration of function 
‘EVP_CIPHER_meth_set_init’; did you mean ‘EVP_CIPHER_CTX_set_num’? 
[-Wimplicit-function-declaration]
|   102 |         EVP_CIPHER_meth_set_init(ssh1_bf,
|       |         ^~~~~~~~~~~~~~~~~~~~~~~~
|       |         EVP_CIPHER_CTX_set_num
| ../../cipher-bf1.c:103:13: error: implicit declaration of function 
‘EVP_CIPHER_meth_get_init’; did you mean ‘EVP_CIPHER_CTX_get_nid’? 
[-Wimplicit-function-declaration]
|   103 |             EVP_CIPHER_meth_get_init(EVP_bf_cbc()));
|       |             ^~~~~~~~~~~~~~~~~~~~~~~~
|       |             EVP_CIPHER_CTX_get_nid
| ../../cipher-bf1.c:107:9: error: implicit declaration of function 
‘EVP_CIPHER_meth_set_cleanup’; did you mean ‘EVP_CIPHER_CTX_cleanup’? 
[-Wimplicit-function-declaration]
|   107 |         EVP_CIPHER_meth_set_cleanup(ssh1_bf,
|       |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~
|       |         EVP_CIPHER_CTX_cleanup
| ../../cipher-bf1.c:108:13: error: implicit declaration of function 
‘EVP_CIPHER_meth_get_cleanup’; did you mean ‘EVP_CIPHER_CTX_cleanup’? 
[-Wimplicit-function-declaration]
|   108 |             EVP_CIPHER_meth_get_cleanup(EVP_bf_cbc()));
|       |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~
|       |             EVP_CIPHER_CTX_cleanup
| ../../cipher-bf1.c:109:9: error: implicit declaration of function 
‘EVP_CIPHER_meth_set_ctrl’; did you mean ‘EVP_CIPHER_CTX_ctrl’? 
[-Wimplicit-function-declaration]
|   109 |         EVP_CIPHER_meth_set_ctrl(ssh1_bf,
|       |         ^~~~~~~~~~~~~~~~~~~~~~~~
|       |         EVP_CIPHER_CTX_ctrl
| ../../cipher-bf1.c:110:13: error: implicit declaration of function 
‘EVP_CIPHER_meth_get_ctrl’; did you mean ‘EVP_CIPHER_CTX_ctrl’? 
[-Wimplicit-function-declaration]
|   110 |             EVP_CIPHER_meth_get_ctrl(EVP_bf_cbc()));
|       |             ^~~~~~~~~~~~~~~~~~~~~~~~
|       |             EVP_CIPHER_CTX_ctrl
| ../../cipher-bf1.c:112:9: error: implicit declaration of function 
‘EVP_CIPHER_meth_set_do_cipher’; did you mean 
‘EVP_CIPHER_CTX_get1_cipher’? [-Wimplicit-function-declaration]
|   112 |         EVP_CIPHER_meth_set_do_cipher(ssh1_bf, bf_ssh1_cipher);
|       |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|       |         EVP_CIPHER_CTX_get1_cipher
| make[2]: *** [Makefile:152: cipher-bf1.o] Error 1
| make[2]: Leaving directory 
'/build/reproducible-path/openssh-ssh1-7.5p1/debian/build-deb-ssh1'


Full buildlog
        
https://breakpoint.cc/openssl-rebuild/logs-4/attempted/openssh-ssh1_7.5p1-18_amd64-2026-04-19T13:49:11Z

Sebastian

Reply via email to