Support converting cipher name to RFC name and vice versa
[openssl.git] / doc / man3 / SSL_CIPHER_get_name.pod
1 =pod
2
3 =head1 NAME
4
5 SSL_CIPHER_get_name,
6 SSL_CIPHER_standard_name,
7 OPENSSL_cipher_name,
8 SSL_CIPHER_get_bits,
9 SSL_CIPHER_get_version,
10 SSL_CIPHER_description,
11 SSL_CIPHER_get_cipher_nid,
12 SSL_CIPHER_get_digest_nid,
13 SSL_CIPHER_get_handshake_digest,
14 SSL_CIPHER_get_kx_nid,
15 SSL_CIPHER_get_auth_nid,
16 SSL_CIPHER_is_aead
17 - get SSL_CIPHER properties
18
19 =head1 SYNOPSIS
20
21  #include <openssl/ssl.h>
22
23  const char *SSL_CIPHER_get_name(const SSL_CIPHER *cipher);
24  const char *SSL_CIPHER_standard_name(const SSL_CIPHER *cipher);
25  const char *OPENSSL_cipher_name(const char *stdname);
26  int SSL_CIPHER_get_bits(const SSL_CIPHER *cipher, int *alg_bits);
27  char *SSL_CIPHER_get_version(const SSL_CIPHER *cipher);
28  char *SSL_CIPHER_description(const SSL_CIPHER *cipher, char *buf, int size);
29  int SSL_CIPHER_get_cipher_nid(const SSL_CIPHER *c);
30  int SSL_CIPHER_get_digest_nid(const SSL_CIPHER *c);
31  const EVP_MD *SSL_CIPHER_get_handshake_digest(const SSL_CIPHER *c);
32  int SSL_CIPHER_get_kx_nid(const SSL_CIPHER *c);
33  int SSL_CIPHER_get_auth_nid(const SSL_CIPHER *c);
34  int SSL_CIPHER_is_aead(const SSL_CIPHER *c);
35
36 =head1 DESCRIPTION
37
38 SSL_CIPHER_get_name() returns a pointer to the name of B<cipher>. If the
39 B<cipher> is NULL, it returns "(NONE)".
40
41 SSL_CIPHER_standard_name() returns a pointer to the standard RFC name of
42 B<cipher>. If the B<cipher> is NULL, it returns "(NONE)". If the B<cipher>
43 has no standard name, it returns B<NULL>.
44
45 OPENSSL_cipher_name() returns a pointer to the OpenSSL name of B<stdname>.
46 If the B<stdname> is NULL, or B<stdname> has no corresponding OpenSSL name,
47 it returns "(NONE)".
48
49 SSL_CIPHER_get_bits() returns the number of secret bits used for B<cipher>.
50 If B<cipher> is NULL, 0 is returned.
51
52 SSL_CIPHER_get_version() returns string which indicates the SSL/TLS protocol
53 version that first defined the cipher.  It returns "(NONE)" if B<cipher> is NULL.
54
55 SSL_CIPHER_get_cipher_nid() returns the cipher NID corresponding to B<c>.
56 If there is no cipher (e.g. for cipher suites with no encryption) then
57 B<NID_undef> is returned.
58
59 SSL_CIPHER_get_digest_nid() returns the digest NID corresponding to the MAC
60 used by B<c> during record encryption/decryption. If there is no digest (e.g.
61 for AEAD cipher suites) then B<NID_undef> is returned.
62
63 SSL_CIPHER_get_handshake_digest() returns an EVP_MD for the digest used during
64 the SSL/TLS handshake when using the SSL_CIPHER B<c>. Note that this may be
65 different to the digest used to calculate the MAC for encrypted records.
66
67 SSL_CIPHER_get_kx_nid() returns the key exchange NID corresponding to the method
68 used by B<c>. If there is no key exchange, then B<NID_undef> is returned.
69 If any appropriate key exchange algorithm can be used (as in the case of TLS 1.3
70 cipher suites) B<NID_kx_any> is returned. Examples (not comprehensive):
71
72  NID_kx_rsa
73  NID_kx_ecdhe
74  NID_kx_dhe
75  NID_kx_psk
76
77 SSL_CIPHER_get_auth_nid() returns the authentication NID corresponding to the method
78 used by B<c>. If there is no authentication, then B<NID_undef> is returned.
79 If any appropriate authentication algorithm can be used (as in the case of
80 TLS 1.3 cipher suites) B<NID_auth_any> is returned. Examples (not comprehensive):
81
82  NID_auth_rsa
83  NID_auth_ecdsa
84  NID_auth_psk
85
86 SSL_CIPHER_is_aead() returns 1 if the cipher B<c> is AEAD (e.g. GCM or
87 ChaCha20/Poly1305), and 0 if it is not AEAD.
88
89 SSL_CIPHER_description() returns a textual description of the cipher used
90 into the buffer B<buf> of length B<len> provided.  If B<buf> is provided, it
91 must be at least 128 bytes, otherwise a buffer will be allocated using
92 OPENSSL_malloc().  If the provided buffer is too small, or the allocation fails,
93 B<NULL> is returned.
94
95 The string returned by SSL_CIPHER_description() consists of several fields
96 separated by whitespace:
97
98 =over 4
99
100 =item <ciphername>
101
102 Textual representation of the cipher name.
103
104 =item <protocol version>
105
106 Protocol version, such as B<TLSv1.2>, when the cipher was first defined.
107
108 =item Kx=<key exchange>
109
110 Key exchange method such as B<RSA>, B<ECDHE>, etc.
111
112 =item Au=<authentication>
113
114 Authentication method such as B<RSA>, B<None>, etc.. None is the
115 representation of anonymous ciphers.
116
117 =item Enc=<symmetric encryption method>
118
119 Encryption method, with number of secret bits, such as B<AESGCM(128)>.
120
121 =item Mac=<message authentication code>
122
123 Message digest, such as B<SHA256>.
124
125 =back
126
127 Some examples for the output of SSL_CIPHER_description():
128
129  ECDHE-RSA-AES256-GCM-SHA256 TLSv1.2 Kx=ECDH     Au=RSA  Enc=AESGCM(256) Mac=AEAD
130  RSA-PSK-AES256-CBC-SHA384 TLSv1.0 Kx=RSAPSK   Au=RSA  Enc=AES(256)  Mac=SHA384
131
132 =head1 HISTORY
133
134 SSL_CIPHER_get_version() was updated to always return the correct protocol
135 string in OpenSSL 1.1.0.
136
137 SSL_CIPHER_description() was changed to return B<NULL> on error,
138 rather than a fixed string, in OpenSSL 1.1.0.
139
140 SSL_CIPHER_get_handshake_digest() was added in OpenSSL 1.1.1.
141
142 SSL_CIPHER_standard_name() was globally available in OpenSSL 1.1.1. Before
143 OpenSSL 1.1.1, tracing (B<enable-ssl-trace> argument to Configure) was
144 required to enable this function.
145
146 OPENSSL_cipher_name() was added in OpenSSL 1.1.1.
147
148 =head1 SEE ALSO
149
150 L<ssl(7)>, L<SSL_get_current_cipher(3)>,
151 L<SSL_get_ciphers(3)>, L<ciphers(1)>
152
153 =head1 COPYRIGHT
154
155 Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
156
157 Licensed under the OpenSSL license (the "License").  You may not use
158 this file except in compliance with the License.  You can obtain a copy
159 in the file LICENSE in the source distribution or at
160 L<https://www.openssl.org/source/license.html>.
161
162 =cut