]> gitweb.factorcode.org Git - factor.git/blob - basis/openssl/openssl-docs.factor
git: fix tests
[factor.git] / basis / openssl / openssl-docs.factor
1 USING: help.markup help.syntax ;
2 IN: openssl
3
4 HELP: maybe-init-ssl
5 { $description "Word that initializes openssl if it isn't already initialized." }
6 { $see-also ssl-initialized? } ;
7
8 HELP: ssl-initialized?
9 { $var-description "Boolean that is " { $link t } " after ssl has been initialized." } ;
10
11 HELP: ssl-new-api?
12 { $var-description "Boolean that is " { $link t } " if the detected libssl version is 1.1.0 or greater." } ;
13
14 ARTICLE: "openssl" "OpenSSL Binding"
15 "The " { $vocab-link "openssl" } " vocab and its subvocabs implements bindings for the libssl and libcrypto SSL libraries. Variables:"
16 { $subsections ssl-initialized? ssl-new-api? } ;
17
18 ABOUT: "openssl"