Lines Matching refs:thread
5 openssl-threads - Overview of thread safety in OpenSSL
9 In this man page, we use the term B<thread-safe> to indicate that an
18 all OpenSSL objects are thread-safe.
23 One major use of the OpenSSL thread API is to implement reference counting.
45 Get methods are often thread-safe as long as the ownership requirements are
47 Set methods, or modifying shared objects, are generally not thread-safe
50 Objects are thread-safe
59 Another instance of thread-safety is when updates to an object's
63 In all cases, however, it is generally not safe for one thread to
65 while another thread is using that object, such as verifying a signature.
72 For implicit global state or singletons, thread-safety depends on the facility.