From bd8abd7b5cfb55bcc7becc2bf2344ec5f9a0185f Mon Sep 17 00:00:00 2001 From: Hans Nilsson Date: Tue, 9 Apr 2019 12:16:28 +0200 Subject: crypto: Rename 'crypto_(init|update)_dyn_iv' to 'crypto_dyn_iv_(init|update)' --- lib/crypto/doc/src/crypto.xml | 8 ++++---- lib/crypto/doc/src/new_api.xml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'lib/crypto/doc') diff --git a/lib/crypto/doc/src/crypto.xml b/lib/crypto/doc/src/crypto.xml index d607679ff5..641738247e 100644 --- a/lib/crypto/doc/src/crypto.xml +++ b/lib/crypto/doc/src/crypto.xml @@ -702,13 +702,13 @@ - + Initializes a series of encryptions or decryptions where the IV is provided later

Part of the new API. Initializes a series of encryptions or decryptions where the IV is provided later. The actual encryption or decryption is done by - crypto_update_dyn_iv/3. + crypto_dyn_iv_update/3.

For encryption, set the EncryptFlag to true. For decryption, set it to false.

@@ -718,13 +718,13 @@
- + Do an actual crypto operation on a part of the full text and the IV is supplied for each part

Part of the new API. Do an actual crypto operation on a part of the full text and the IV is supplied for each part. The State should be created with - crypto_init_dyn_iv/3. + crypto_dyn_iv_init/3.

See examples in the User's Guide.

diff --git a/lib/crypto/doc/src/new_api.xml b/lib/crypto/doc/src/new_api.xml index 7b062310f2..79096b55e8 100644 --- a/lib/crypto/doc/src/new_api.xml +++ b/lib/crypto/doc/src/new_api.xml @@ -99,8 +99,8 @@ for each part, the functions are:

- crypto_init_dyn_iv/3 - crypto_update_dyn_iv/3 + crypto_dyn_iv_init/3 + crypto_dyn_iv_update/3

An example of where those functions are needed, is when handling the TLS protocol.

-- cgit v1.2.3