1EVP_CIPHER-NULL(7ossl) OpenSSL EVP_CIPHER-NULL(7ossl)
2
3
4
6 EVP_CIPHER-NULL - The NULL EVP_CIPHER implementation
7
9 Support for a NULL symmetric encryption using the EVP_CIPHER API. This
10 is used when the TLS cipher suite is TLS_NULL_WITH_NULL_NULL. This
11 does no encryption (just copies the data) and has a mac size of zero.
12
13 Algorithm Name
14 The following algorithm is available in the default provider:
15
16 "NULL"
17
18 Parameters
19 This implementation supports the following parameters:
20
21 Gettable EVP_CIPHER parameters
22
23 See "Gettable EVP_CIPHER parameters" in EVP_EncryptInit(3)
24
25 Gettable EVP_CIPHER_CTX parameters
26
27 "keylen" (OSSL_CIPHER_PARAM_KEYLEN) <unsigned integer>
28 "ivlen" (OSSL_CIPHER_PARAM_IVLEN and <OSSL_CIPHER_PARAM_AEAD_IVLEN)
29 <unsigned integer>
30 "tls-mac" (OSSL_CIPHER_PARAM_TLS_MAC) <octet ptr>
31
32 See "PARAMETERS" in EVP_EncryptInit(3) for further information.
33
34 Settable EVP_CIPHER_CTX parameters
35
36 "tls-mac-size" (OSSL_CIPHER_PARAM_TLS_MAC_SIZE) <unsigned integer>
37
38 See "PARAMETERS" in EVP_EncryptInit(3) for further information.
39
41 RFC 5246 section-6.2.3.1
42
44 provider-cipher(7), OSSL_PROVIDER-default(7)
45
47 Copyright 2023 The OpenSSL Project Authors. All Rights Reserved.
48
49 Licensed under the Apache License 2.0 (the "License"). You may not use
50 this file except in compliance with the License. You can obtain a copy
51 in the file LICENSE in the source distribution or at
52 <https://www.openssl.org/source/license.html>.
53
54
55
563.0.9 2023-07-27 EVP_CIPHER-NULL(7ossl)