File: //usr/local/openssl/man/man3/crypto.3
.\" -*- mode: troff; coding: utf-8 -*-
.\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43)
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v
.if n .sp
..
.de Vb \" Begin verbatim text
.ft CW
.nf
.ne \\$1
..
.de Ve \" End verbatim text
.ft R
.fi
..
.\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>.
.ie n \{\
. ds C` ""
. ds C' ""
'br\}
.el\{\
. ds C`
. ds C'
'br\}
.\"
.\" Escape single quotes in literal strings from groff's Unicode transform.
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\"
.\" If the F register is >0, we'll generate index entries on stderr for
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD. Of course, you'll have to process the
.\" output yourself in some meaningful fashion.
.\"
.\" Avoid warning from groff about undefined register 'F'.
.de IX
..
.nr rF 0
.if \n(.g .if rF .nr rF 1
.if (\n(rF:(\n(.g==0)) \{\
. if \nF \{\
. de IX
. tm Index:\\$1\t\\n%\t"\\$2"
..
. if !\nF==2 \{\
. nr % 0
. nr F 2
. \}
. \}
.\}
.rr rF
.\" ========================================================================
.\"
.IX Title "crypto 3"
.TH crypto 3 2019-12-20 1.0.2u OpenSSL
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
.nh
.SH NAME
crypto \- OpenSSL cryptographic library
.SH SYNOPSIS
.IX Header "SYNOPSIS"
.SH DESCRIPTION
.IX Header "DESCRIPTION"
The OpenSSL \fBcrypto\fR library implements a wide range of cryptographic
algorithms used in various Internet standards. The services provided
by this library are used by the OpenSSL implementations of SSL, TLS
and S/MIME, and they have also been used to implement SSH, OpenPGP, and
other cryptographic standards.
.SH OVERVIEW
.IX Header "OVERVIEW"
\&\fBlibcrypto\fR consists of a number of sub-libraries that implement the
individual algorithms.
.PP
The functionality includes symmetric encryption, public key
cryptography and key agreement, certificate handling, cryptographic
hash functions and a cryptographic pseudo-random number generator.
.IP "SYMMETRIC CIPHERS" 4
.IX Item "SYMMETRIC CIPHERS"
\&\fBblowfish\fR\|(3), \fBcast\fR\|(3), \fBdes\fR\|(3),
\&\fBidea\fR\|(3), \fBrc2\fR\|(3), \fBrc4\fR\|(3), \fBrc5\fR\|(3)
.IP "PUBLIC KEY CRYPTOGRAPHY AND KEY AGREEMENT" 4
.IX Item "PUBLIC KEY CRYPTOGRAPHY AND KEY AGREEMENT"
\&\fBdsa\fR\|(3), \fBdh\fR\|(3), \fBrsa\fR\|(3)
.IP CERTIFICATES 4
.IX Item "CERTIFICATES"
\&\fBx509\fR\|(3), \fBx509v3\fR\|(3)
.IP "AUTHENTICATION CODES, HASH FUNCTIONS" 4
.IX Item "AUTHENTICATION CODES, HASH FUNCTIONS"
\&\fBhmac\fR\|(3), \fBmd2\fR\|(3), \fBmd4\fR\|(3),
\&\fBmd5\fR\|(3), \fBmdc2\fR\|(3), \fBripemd\fR\|(3),
\&\fBsha\fR\|(3)
.IP "AUXILIARY FUNCTIONS" 4
.IX Item "AUXILIARY FUNCTIONS"
\&\fBerr\fR\|(3), \fBthreads\fR\|(3), \fBrand\fR\|(3),
\&\fBOPENSSL_VERSION_NUMBER\fR\|(3)
.IP "INPUT/OUTPUT, DATA ENCODING" 4
.IX Item "INPUT/OUTPUT, DATA ENCODING"
\&\fBasn1\fR\|(3), \fBbio\fR\|(3), \fBevp\fR\|(3), \fBpem\fR\|(3),
\&\fBpkcs7\fR\|(3), \fBpkcs12\fR\|(3)
.IP "INTERNAL FUNCTIONS" 4
.IX Item "INTERNAL FUNCTIONS"
\&\fBbn\fR\|(3), \fBbuffer\fR\|(3), \fBec\fR\|(3), \fBlhash\fR\|(3),
\&\fBobjects\fR\|(3), \fBstack\fR\|(3),
\&\fBtxt_db\fR\|(3)
.SH NOTES
.IX Header "NOTES"
Some of the newer functions follow a naming convention using the numbers
\&\fB0\fR and \fB1\fR. For example the functions:
.PP
.Vb 2
\& int X509_CRL_add0_revoked(X509_CRL *crl, X509_REVOKED *rev);
\& int X509_add1_trust_object(X509 *x, ASN1_OBJECT *obj);
.Ve
.PP
The \fB0\fR version uses the supplied structure pointer directly
in the parent and it will be freed up when the parent is freed.
In the above example \fBcrl\fR would be freed but \fBrev\fR would not.
.PP
The \fB1\fR function uses a copy of the supplied structure pointer
(or in some cases increases its link count) in the parent and
so both (\fBx\fR and \fBobj\fR above) should be freed up.
.SH "SEE ALSO"
.IX Header "SEE ALSO"
\&\fBopenssl\fR\|(1), \fBssl\fR\|(3)