summaryrefslogtreecommitdiff
path: root/lib/crypto/doc
Commit message (Collapse)AuthorAgeFilesLines
* Prepare releaseErlang/OTP2023-05-151-0/+71
|
* Merge branch 'maint' into masterJakub Witczak2023-04-271-0/+16
|\ | | | | | | | | | | | | * maint: Updated OTP version Prepare release Update copyright year
| * Prepare releaseErlang/OTP2023-04-251-0/+16
| |
* | Revert "Prepare release"Henrik Nord2023-04-121-59/+0
| | | | | | | | This reverts commit d4e4511b19f4126d9271a6e3a8fa2eb716da7e85.
* | Prepare releaseErlang/OTP2023-04-111-0/+59
| |
* | Update copyright yearErlang/OTP2023-04-111-1/+1
| |
* | Merge pull request #7062 from alishir/patch-1Rickard Green2023-03-271-1/+1
|\ \ | | | | | | Fixed typo.
| * | Fixed typo.Ali Shirvani2023-03-251-1/+1
| |/
* | Revert "Prepare release"Henrik Nord2023-03-221-59/+0
| | | | | | | | This reverts commit 1cf126f91eb533783409da95b117207d8c13d9aa.
* | Prepare releaseErlang/OTP2023-03-211-0/+59
| |
* | Merge branch 'maint' into masterHenrik Nord2023-03-081-0/+25
|\ \ | |/ | | | | | | | | | | * maint: Updated OTP version Prepare release Update copyright year
| * Prepare releaseErlang/OTP2023-03-061-0/+25
| |
* | Revert "Prepare release"Henrik Nord2023-02-151-59/+0
| | | | | | | | This reverts commit 587341d994f91af5b30483ee9434e932e3d7b802.
* | Prepare releaseErlang/OTP2023-02-141-0/+59
| |
* | Merge branch 'maint' into masterHenrik Nord2022-09-212-3/+100
|\ \ | |/ | | | | | | | | | | * maint: Updated OTP version Prepare release Update copyright year
| * Prepare releaseErlang/OTP2022-09-202-2/+99
| |
| * Update copyright yearErlang/OTP2022-09-201-1/+1
| |
* | Merge branch 'maint' into masterLars Thorsen2022-08-182-1/+34
|\ \ | |/ | | | | | | | | | | * maint: Updated OTP version Prepare release Update copyright year
| * Merge branch 'maint-24' into maintLars Thorsen2022-08-182-1/+34
| |\ | | | | | | | | | | | | | | | | | | * maint-24: Updated OTP version Prepare release Update copyright year
| | * Prepare releaseErlang/OTP2022-08-172-2/+35
| | |
| | * Update copyright yearErlang/OTP2022-08-171-1/+1
| | |
| | * Merge branch 'lars/crypto/engine_load_rewrite_24/OTP-18172/ERIERL-826' into ↵Erlang/OTP2022-08-172-73/+55
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | maint-24 * lars/crypto/engine_load_rewrite_24/OTP-18172/ERIERL-826: Changed the behaviour of the engine load functions
* | | | [crypto/4871] Add support for SHAKE128 and SHAKE256.Marcel Lanz2022-08-082-2/+23
|/ / /
* | | Merge branch 'lars/crypto/engine_load_rewrite_24/OTP-18172/ERIERL-826' into ↵Lars Thorsen2022-08-052-73/+55
|\ \ \ | | |/ | |/| | | | | | | | | | | | | maint * lars/crypto/engine_load_rewrite_24/OTP-18172/ERIERL-826: Changed the behaviour of the engine load functions
| * | Changed the behaviour of the engine load functionsLars Thorsen2022-08-042-73/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The engine load/unload functions have got changed semantics to get a more consistent behaviour and work correct when variables are garbage collected. The load functions now don't register the methods for the engine to replace. That will now be handled with the new functions engine_register/engine_unregister if needed. Some functions functions are removed from the documentation and therefor the API, but they are left in the code for compatibility. engine_load/4: is now the same as engine_load/3 engine_unload/2: is now the same as engine_unload/1 ensure_engine_loaded/3: is now the same as ensure_engine_loaded/2 ensure_engine_unloaded/1, ensure_engine_unloaded/2: is now the same as engine_unload/1
* | | Merge branch 'hans/crypto/remove_conf_warning/OTP-18153' into maintHans Nilsson2022-08-011-4/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * hans/crypto/remove_conf_warning/OTP-18153: Update configure scripts crypto: Remove warning from configure.ac crypto: Add note about ENGINE and FIPS not supported for 3.0 crypto: Remove warning for not using crypto with OSSL 3.0 in production code
| * | | crypto: Add note about ENGINE and FIPS not supported for 3.0Hans Nilsson2022-06-171-0/+2
| | | |
| * | | crypto: Remove warning for not using crypto with OSSL 3.0 in production codeHans Nilsson2022-06-171-5/+0
| | | |
* | | | Merge branch 'maint-23' into maintJakub Witczak2022-07-131-0/+33
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * maint-23: Updated OTP version Prepare release Update copyright year
| * | | | Prepare releaseErlang/OTP2022-07-122-2/+35
| | | | |
| * | | | Update copyright yearErlang/OTP2022-07-121-1/+1
| | | | |
| * | | | [crypto] Changed the behaviour of the engine load functionsLars Thorsen2022-07-072-73/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The engine load/unload functions have got changed semantics to get a more consistent behaviour and work correct when variables are garbage collected. The load functions now don't register the methods for the engine to replace. That will now be handled with the new functions engine_register/engine_unregister if needed. Some functions functions are removed from the documentation and therefor the API, but they are left in the code for compatibility. engine_load/4: is now the same as engine_load/3 engine_unload/2: is now the same as engine_unload/1 ensure_engine_loaded/3: is now the same as ensure_engine_loaded/2 ensure_engine_unloaded/1, ensure_engine_unloaded/2: is now the same as engine_unload/1
* | | | | Merge branch 'maint-23' into maintIngela Anderton Andin2022-06-211-0/+27
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | * maint-23: Updated OTP version Prepare release Update copyright year
| * | | | Prepare releaseErlang/OTP2022-06-211-0/+27
| | | | |
| * | | | Update copyright yearErlang/OTP2022-06-211-1/+1
| | | | |
| * | | | Fix timing bug in ensure_engine_loadedLars Thorsen2022-05-111-50/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When two ensure_engine_loaded() calls were done in parallell there was a possibility that a crypto lib function was called by both instead of just one of them. This is solved by moving the implementation from erlang down into a nif function that uses a mutex to protect the sensitive part.
* | | | | Merge branch 'maint-24' into maintFredrik Frantzen2022-06-211-0/+15
|\ \ \ \ \ | |_|/ / / |/| | | / | | |_|/ | |/| | | | | | | | | | * maint-24: Updated OTP version Prepare release Update copyright year
| * | | Prepare releaseErlang/OTP2022-06-211-0/+15
| | |/ | |/|
* | | Merge branch 'maint-25' into maintIngela Anderton Andin2022-06-091-0/+37
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * maint-25: Updated OTP version Prepare release Update copyright year
| * | | Prepare releaseErlang/OTP2022-06-081-0/+37
| | | |
| * | | Merge branch 'hans/crypto/dh_error/OTP-18046' into maint-25Erlang/OTP2022-06-081-1/+21
| |\ \ \ | | | | | | | | | | | | | | | | | | | | * hans/crypto/dh_error/OTP-18046: crypto: Clearify compute_key/2 length param for MODP groups in OSSL 3.0
* | \ \ \ Merge branch 'maint-24' into maintIngela Anderton Andin2022-06-081-0/+20
|\ \ \ \ \ | | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | * maint-24: Updated OTP version Prepare release Update copyright year
| * | | | Prepare releaseErlang/OTP2022-06-071-0/+20
| | | | |
* | | | | Merge branch 'hans/crypto/dh_error/OTP-18046' into maintHans Nilsson2022-06-071-1/+21
|\ \ \ \ \ | |_|/ / / |/| | / / | | |/ / | |/| | * hans/crypto/dh_error/OTP-18046: crypto: Clearify compute_key/2 length param for MODP groups in OSSL 3.0
| * | | crypto: Clearify compute_key/2 length param for MODP groups in OSSL 3.0Hans Nilsson2022-06-031-1/+21
| | | |
* | | | crypto: Doc clearification about tested OpenSSL versionsHans Nilsson2022-06-032-9/+4
|/ / /
* | | Prepare releaseErlang/OTP2022-05-171-0/+151
| | |
* | | Update copyright yearErlang/OTP2022-05-171-1/+1
| | |
* | | Merge branch 'maint'Lars Thorsen2022-05-131-49/+18
|\ \ \ | |/ /
| * | Update documentation and remove printoutLars Thorsen2022-05-121-49/+18
| | |