diff options
author | Sverker Eriksson <[email protected]> | 2013-11-27 18:00:30 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2013-11-27 18:00:30 +0100 |
commit | 998d043865059dcf7f5055a62586cc1420c221b9 (patch) | |
tree | b9a1e6f399ccddea94c15230916925b3f4896daf /lib/crypto/doc/src | |
parent | 9f2cdf704fa0732817b4c49067cd561dd13ff730 (diff) | |
download | otp-998d043865059dcf7f5055a62586cc1420c221b9.tar.gz otp-998d043865059dcf7f5055a62586cc1420c221b9.tar.bz2 otp-998d043865059dcf7f5055a62586cc1420c221b9.zip |
crypto: Throw notsup for AES IGE if openssl older than 0.9.8c
Diffstat (limited to 'lib/crypto/doc/src')
-rw-r--r-- | lib/crypto/doc/src/crypto.xml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/crypto/doc/src/crypto.xml b/lib/crypto/doc/src/crypto.xml index 49c020dbe5..406fd5e59a 100644 --- a/lib/crypto/doc/src/crypto.xml +++ b/lib/crypto/doc/src/crypto.xml @@ -159,8 +159,9 @@ </type> <desc> <p>Encrypt <c>PlainText</c>according to <c>Type</c> block cipher. - <c>IVec</c> is an arbitrary initializing vector. - </p> + <c>IVec</c> is an arbitrary initializing vector.</p> + <p>May throw exception <c>notsup</c> in case the chosen <c>Type</c> + is not supported by the underlying OpenSSL implementation.</p> </desc> </func> @@ -175,8 +176,9 @@ </type> <desc> <p>Decrypt <c>CipherText</c>according to <c>Type</c> block cipher. - <c>IVec</c> is an arbitrary initializing vector. - </p> + <c>IVec</c> is an arbitrary initializing vector.</p> + <p>May throw exception <c>notsup</c> in case the chosen <c>Type</c> + is not supported by the underlying OpenSSL implementation.</p> </desc> </func> |