Lines Matching full:library
71 The \f(CW\*(C`libcrypto\*(C'\fR library provides APIs for general purpose cryptography such as
80 The \f(CW\*(C`libssl\*(C'\fR library provides functions to perform secure communication between
84 The \f(CW\*(C`libssl\*(C'\fR library depends on and uses many of the capabilities supplied by
116 .SH "LIBRARY CONTEXTS"
117 .IX Header "LIBRARY CONTEXTS"
118 Many OpenSSL API functions make use of a library context. A library context can
120 a provider is loaded, it is only loaded within the scope of a given library
122 application to each use a different library context and have different providers
125 If an application does not explicitly create a library context then the
126 "default" library context will be used.
128 Library contexts are represented by the \fBOSSL_LIB_CTX\fR type. Many OpenSSL API
129 functions take a library context as a parameter. Applications can always pass
130 \&\fBNULL\fR for this parameter to just use the default library context.
132 The default library context is automatically created the first time it is
137 Similarly when the application exits, the default library context is
140 See \fBOSSL_LIB_CTX\fR\|(3) for more information about library contexts.
157 library context using the \fBEVP_set_default_properties\fR\|(3) or
235 The default provider is built-in as part of the \fIlibcrypto\fR library and
249 The base provider is built in as part of the \fIlibcrypto\fR library and contains
290 The null provider is built in as part of the \fIlibcrypto\fR library. It contains
295 You can use this if you create your own library context and want to ensure that
296 all API calls have correctly passed the created library context and are not
297 accidentally using the default library context. Load the null provider into the
298 default library context so that the default library context has no algorithm
305 will set up various configuration settings within the default library context.
306 Applications that create their own library contexts may optionally configure
313 .SH "LIBRARY CONVENTIONS"
314 .IX Header "LIBRARY CONVENTIONS"