diff options
Diffstat (limited to 'src/lib/libcrypto/man/EVP_EncryptInit.3')
-rw-r--r-- | src/lib/libcrypto/man/EVP_EncryptInit.3 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/libcrypto/man/EVP_EncryptInit.3 b/src/lib/libcrypto/man/EVP_EncryptInit.3 index e8d22d8677..a0adfbab09 100644 --- a/src/lib/libcrypto/man/EVP_EncryptInit.3 +++ b/src/lib/libcrypto/man/EVP_EncryptInit.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: EVP_EncryptInit.3,v 1.51 2023/12/26 22:13:00 schwarze Exp $ | 1 | .\" $OpenBSD: EVP_EncryptInit.3,v 1.52 2024/07/21 08:36:43 tb Exp $ |
2 | .\" full merge up to: OpenSSL 5211e094 Nov 11 14:39:11 2014 -0800 | 2 | .\" full merge up to: OpenSSL 5211e094 Nov 11 14:39:11 2014 -0800 |
3 | .\" EVP_bf_cbc.pod EVP_cast5_cbc.pod EVP_idea_cbc.pod EVP_rc2_cbc.pod | 3 | .\" EVP_bf_cbc.pod EVP_cast5_cbc.pod EVP_idea_cbc.pod EVP_rc2_cbc.pod |
4 | .\" 7c6d372a Nov 20 13:20:01 2018 +0000 | 4 | .\" 7c6d372a Nov 20 13:20:01 2018 +0000 |
@@ -69,7 +69,7 @@ | |||
69 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 69 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
70 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 70 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
71 | .\" | 71 | .\" |
72 | .Dd $Mdocdate: December 26 2023 $ | 72 | .Dd $Mdocdate: July 21 2024 $ |
73 | .Dt EVP_ENCRYPTINIT 3 | 73 | .Dt EVP_ENCRYPTINIT 3 |
74 | .Os | 74 | .Os |
75 | .Sh NAME | 75 | .Sh NAME |
@@ -142,7 +142,7 @@ | |||
142 | .Fo EVP_EncryptInit_ex | 142 | .Fo EVP_EncryptInit_ex |
143 | .Fa "EVP_CIPHER_CTX *ctx" | 143 | .Fa "EVP_CIPHER_CTX *ctx" |
144 | .Fa "const EVP_CIPHER *type" | 144 | .Fa "const EVP_CIPHER *type" |
145 | .Fa "ENGINE *impl" | 145 | .Fa "ENGINE *engine" |
146 | .Fa "const unsigned char *key" | 146 | .Fa "const unsigned char *key" |
147 | .Fa "const unsigned char *iv" | 147 | .Fa "const unsigned char *iv" |
148 | .Fc | 148 | .Fc |
@@ -164,7 +164,7 @@ | |||
164 | .Fo EVP_DecryptInit_ex | 164 | .Fo EVP_DecryptInit_ex |
165 | .Fa "EVP_CIPHER_CTX *ctx" | 165 | .Fa "EVP_CIPHER_CTX *ctx" |
166 | .Fa "const EVP_CIPHER *type" | 166 | .Fa "const EVP_CIPHER *type" |
167 | .Fa "ENGINE *impl" | 167 | .Fa "ENGINE *engine" |
168 | .Fa "const unsigned char *key" | 168 | .Fa "const unsigned char *key" |
169 | .Fa "const unsigned char *iv" | 169 | .Fa "const unsigned char *iv" |
170 | .Fc | 170 | .Fc |
@@ -186,7 +186,7 @@ | |||
186 | .Fo EVP_CipherInit_ex | 186 | .Fo EVP_CipherInit_ex |
187 | .Fa "EVP_CIPHER_CTX *ctx" | 187 | .Fa "EVP_CIPHER_CTX *ctx" |
188 | .Fa "const EVP_CIPHER *type" | 188 | .Fa "const EVP_CIPHER *type" |
189 | .Fa "ENGINE *impl" | 189 | .Fa "ENGINE *engine" |
190 | .Fa "const unsigned char *key" | 190 | .Fa "const unsigned char *key" |
191 | .Fa "const unsigned char *iv" | 191 | .Fa "const unsigned char *iv" |
192 | .Fa "int enc" | 192 | .Fa "int enc" |
@@ -361,7 +361,7 @@ is the IV to use (if necessary). | |||
361 | The actual number of bytes used for the | 361 | The actual number of bytes used for the |
362 | key and IV depends on the cipher. | 362 | key and IV depends on the cipher. |
363 | The | 363 | The |
364 | .Fa ENGINE *impl | 364 | .Fa ENGINE *engine |
365 | argument is always ignored and passing | 365 | argument is always ignored and passing |
366 | .Dv NULL | 366 | .Dv NULL |
367 | is recommended. | 367 | is recommended. |