Displaying 3 results from an estimated 3 matches for "sha1_block_data_order".
2008 May 16
0
cfservd crashing on 7.0
...ound)...done.
Loaded symbols for /lib/libm.so.5
Reading symbols from /lib/libc.so.7...(no debugging symbols
found)...done.
Loaded symbols for /lib/libc.so.7
Reading symbols from /libexec/ld-elf.so.1...(no debugging symbols
found)...done.
Loaded symbols for /libexec/ld-elf.so.1
#0 0x283214e0 in sha1_block_data_order () from /lib/libcrypto.so.5
[New Thread 0x28501600 (LWP 100725)]
[New Thread 0x28501500 (LWP 100723)]
[New Thread 0x28501c00 (LWP 100289)]
[New Thread 0x28501a00 (LWP 100722)]
[New Thread 0x28501900 (LWP 100505)]
[New Thread 0x28501400 (LWP 100726)]
[New Thread 0x28501100 (LWP 100614)]
(gdb) bt
#0...
2012 Nov 10
4
imap-login hanging when firewall blocks ssl handshaking
...b {
driver = passwd
}
protocol imap {
mail_plugins = " zlib imap_zlib"
}
-----------------------------------
gdb's "bt full" gives various results depending on where in the loop, but they are they same from ssl23_accept on down.
(gdb) bt full
#0 0x00007fff92d19f63 in sha1_block_data_order ()
#1 0x00007fff92d1a4ae in SHA1_Final ()
#2 0x00007fff92d45430 in EVP_DigestFinal_ex ()
#3 0x00007fff92d17d7a in ssleay_rand_add ()
#4 0x00007fff974529be in ssl23_accept ()
#5 0x000000010cac0729 in ssl_handshake [inlined] () at /private/tmp/johnsone/dovecot-2.1.10/src/login-common/ssl-proxy-o...
2020 Feb 09
2
[RFC PATCH] Add SHA1 support
...HOST_l2c(ll,(s)); \
+ } while (0)
+
+#define HASH_UPDATE SHA1_Update
+#define HASH_TRANSFORM SHA1_Transform
+#define HASH_FINAL SHA1_Final
+#define HASH_INIT SHA1_Init
+#define HASH_BLOCK_DATA_ORDER sha1_block_data_order
+#define Xupdate(a,ix,ia,ib,ic,id) ( (a)=(ia^ib^ic^id), \
+ ix=(a)=ROTATE((a),1) \
+ )
+
+static void sha1_block_data_order(SHA_CTX *c, const void *p, size_t num);
+
+#include "md32_common.h"
+
+#def...