Displaying 6 results from an estimated 6 matches for "crypto_lock".
Did you mean:
crypto_w_lock
2000 Jan 18
1
Error when compiling for Solaris7
...for ar... (cached) ar
checking for perl... (cached) /common/bin/perl
checking for rsh... (cached) /usr/bin/rsh
checking for xauth... (cached) /usr/openwin/bin/xauth
checking for inline... (cached) inline
checking for OpenSSL/SSLeay directory... /common
checking for RSAref library... no
checking for CRYPTO_lock in -lcrypto... (cached) yes
checking for deflate in -lz... (cached) yes
checking for login in -lutil... (cached) no
checking for yp_match in -lnsl... (cached) yes
checking for main in -lsocket... (cached) yes
checking for bstring.h... (cached) no
checking for endian.h... (cached) no
checking for la...
2023 Nov 20
1
Finding old patches
Hi,
In the past when I wanted to back port a patch I would go on to the issue
tracker and find a link to the patches that were uploaded ( I think
through gerrit?). I am trying to see what changes were done for
https://issues-archive.asterisk.org/ASTERISK-26109. It seems the code
changes were introduced in 14.4.0-rc1. Is there any "n00b" way of seeing
what patches were created for this
2005 Aug 09
2
error compiling asterisk on solaris
...ence to `lh_doall_arg'
/usr/local/ssl/lib/libssl.so: undefined reference to `CRYPTO_set_ex_data'
/usr/local/ssl/lib/libssl.so: undefined reference to `BIO_printf'
/usr/local/ssl/lib/libssl.so: undefined reference to `SHA1_Update'
/usr/local/ssl/lib/libssl.so: undefined reference to `CRYPTO_lock'
/usr/local/ssl/lib/libssl.so: undefined reference to `DSA_verify'
/usr/local/ssl/lib/libssl.so: undefined reference to `sk_pop_free'
/usr/local/ssl/lib/libssl.so: undefined reference to `SHA1_Final'
/usr/local/ssl/lib/libssl.so: undefined reference to `BIO_puts'
/usr/local/ssl/...
2000 Jan 17
5
AANOUNCE: openssh-1.2.1pre27
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
A couple of silly errors, and one dangerous bug were in the pre26
release. This release corrects them.
http://violet.ibs.com.au/openssh/files/openssh-1.2.1pre27.tar.gz
If you want RPMs or any of the other files, please use a mirror:
http://violet.ibs.com.au/openssh/files/MIRRORS.html
Changes:
- Using __snprintf is *NOT SAFE* on old Solaris.
2000 Jan 17
5
AANOUNCE: openssh-1.2.1pre27
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
A couple of silly errors, and one dangerous bug were in the pre26
release. This release corrects them.
http://violet.ibs.com.au/openssh/files/openssh-1.2.1pre27.tar.gz
If you want RPMs or any of the other files, please use a mirror:
http://violet.ibs.com.au/openssh/files/MIRRORS.html
Changes:
- Using __snprintf is *NOT SAFE* on old Solaris.
2012 Mar 11
2
[patch] Threading support in ssh-agent
...i;
+
+ CRYPTO_set_locking_callback(NULL);
+ for (i=0; i<CRYPTO_num_locks(); i++)
+ {
+ pthread_mutex_destroy(&(lock_cs[i]));
+ }
+ OPENSSL_free(lock_cs);
+ OPENSSL_free(lock_count);
+
+ }
+
+void pthreads_locking_callback(int mode, int type, char *file, int line)
+ {
+ if (mode & CRYPTO_LOCK)
+ {
+ pthread_mutex_lock(&(lock_cs[type]));
+ lock_count[type]++;
+ }
+ else
+ {
+ pthread_mutex_unlock(&(lock_cs[type]));
+ }
+ }
+
+unsigned long pthreads_thread_id(void)
+ {
+ unsigned long ret;
+
+ ret=(unsigned long)pthread_self();
+ return(ret);
+ }
+
+#endif
--- ssh-openssl-t...