Lines Matching refs:secure
11 CRYPTO_secure_used - secure heap storage
45 information might be stored, OpenSSL supports the concept of a "secure heap."
50 If a secure heap is used, then private key B<BIGNUM> values are stored there.
54 CRYPTO_secure_malloc_init() creates the secure heap, with the specified
59 CRYPTO_secure_malloc_initialized() indicates whether or not the secure
63 to the process if all secure memory has been freed.
87 the memory if it was not allocated from the secure heap.
93 requested, in order to "round up" and reduce secure heap fragmentation.
95 OPENSSL_secure_allocated() tells if a pointer is allocated in the secure heap.
98 secure heap.
106 CRYPTO_secure_malloc_initialized() returns 1 if the secure heap is
111 the secure heap of the requested size, or C<NULL> if memory could not be
114 CRYPTO_secure_allocated() returns 1 if the pointer is in the secure heap, or 0 if not.
116 CRYPTO_secure_malloc_done() returns 1 if the secure memory area is released, or 0 if not.