Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-03-19 | crypto: Add FIPS testing for a couple of algorithms | Hans Nilsson | |
in crypto_SUITE. | |||
2019-03-19 | crypto: Sort ciphers in alphabetic order in testsuite | Hans Nilsson | |
2019-03-19 | crypto: Better error report in crypto_SUITE | Hans Nilsson | |
2019-03-19 | crypto: Wrong ifdef symbol used for ENGINE | Hans Nilsson | |
2019-03-19 | crypto: Handle EVP_CIPHER_CTX copying correctly | Hans Nilsson | |
2019-03-19 | crypto: Fix bug in ng_api | Hans Nilsson | |
2019-03-19 | crypto: Better error descriptions | Hans Nilsson | |
2019-03-19 | crypto: Fix bug for older cryptolib | Hans Nilsson | |
2019-03-19 | crypto: Fix leak for eddsa detected by Valgrind | Hans Nilsson | |
2019-03-19 | crypto: Testcase for TLS using new API | Hans Nilsson | |
2019-03-19 | crypto: Rename SSL special functions | Hans Nilsson | |
to crypto_init_dyn_iv/3 and crypto_update_dyn_iv/3 | |||
2019-03-19 | crypto: New function for SSL app | Hans Nilsson | |
2019-03-19 | crypto: Remove compat specials from crypto_init | Hans Nilsson | |
2019-03-19 | crypto: Exceptions as error return in api_ng | Hans Nilsson | |
2019-03-19 | crypto: Relocate the new api code inside the crypto.erl file | Hans Nilsson | |
2019-03-19 | crypto: Cleaning of comments + spec fixing | Hans Nilsson | |
2019-03-19 | crypto: Remove unused variables in test case | Hans Nilsson | |
2019-03-19 | crypto: Test fixes for stream api emulated by the new api | Hans Nilsson | |
The test case for the stream api creates one initial state with stream_init/3 That initial state is then used for a series of encrypts, and for a series of decrypts. That is not possible any more since the changes are saved in the nif reference. | |||
2019-03-19 | crypto: Shrink aes.c,h (remove aes_ctr_stream_* funcs) | Hans Nilsson | |
2019-03-19 | crypto: Remove chacha20.c,h and rc4.c,h | Hans Nilsson | |
Replaced by api_ng.c | |||
2019-03-19 | crypto: Use/implement new funcs for stream-api | Hans Nilsson | |
2019-03-19 | crypto: Test the new api | Hans Nilsson | |
2019-03-19 | crypto: Remove block.c and block.h | Hans Nilsson | |
Replaced by api_ng.c | |||
2019-03-19 | crypto: Fix syntax error in ASSERT | Hans Nilsson | |
2019-03-19 | crypto: Implement crypto one-shot | Hans Nilsson | |
Also: Compatibility functions for aes_ctr in historic crypto libs | |||
2019-03-19 | crypto: Remove condition of block size | Hans Nilsson | |
Unnecessary, because the underlying crypto libraries handles this case. Also: - Relax the condition of binary Key and IV -Fix bug for empty data on historic cryptolibs because tests fails for empty data on at least aes_cfb8 on OpenSSL 0.9.8h. It does not fail on OpenSSL 0.9.8zh. | |||
2019-03-19 | Merge branch 'maint' | Ingela Anderton Andin | |
Conflicts: lib/ssl/src/ssl.erl lib/ssl/src/tls_connection.erl | |||
2019-03-19 | Merge branch 'ingela/ssl/transport-transparance/ERL-861/OTP-15679' into maint | Ingela Anderton Andin | |
* ingela/ssl/transport-transparance/ERL-861/OTP-15679: ssl: Fix transport transparancy | |||
2019-03-19 | Merge branch 'john/compiler/fix-eq-type-infererence-in-validator/ERL-886' | John Högberg | |
* john/compiler/fix-eq-type-infererence-in-validator/ERL-886: beam_validator: Infer types on both sides of '=:=' | |||
2019-03-19 | code_SUITE: Always disable tracing after 'upgrade' test | John Högberg | |
Tracing would be left hanging if the test timed out, causing later tests to fail. | |||
2019-03-18 | Prepare release | Erlang/OTP | |
2019-03-18 | Merge branch 'ingela/ssl/recv-timeout-bug/ERL-884/ERL-883/OTP-14701' into ↵ | Erlang/OTP | |
maint-21 * ingela/ssl/recv-timeout-bug/ERL-884/ERL-883/OTP-14701: ssl: Cancel recv timer in all places | |||
2019-03-18 | Merge branch 'ingela/ssl/transport-transparance/ERL-861/OTP-15679' into maint-21 | Erlang/OTP | |
* ingela/ssl/transport-transparance/ERL-861/OTP-15679: ssl: Fix transport transparancy | |||
2019-03-18 | [kernel|test] Provide more info when failing on test_pktoptions | Micael Karlberg | |
2019-03-18 | [kernel|test] IPV6 adjustments | Micael Karlberg | |
2019-03-18 | [kernel|test] Adjustments to new compiler (C99) | Micael Karlberg | |
2019-03-18 | ssl: Fix ssl:connection_information/1 in TLS 1.3 | Péter Dimitrov | |
Store cipher suite information in session record. Test ssl:connection_information/1 in a TLS 1.3 connection. Change-Id: I7193e6dd2544540e446b5777b5768806cecf2bd3 | |||
2019-03-18 | Add smoke test for erl_call | Rickard Green | |
2019-03-18 | Add new api functions to ei_fake_prog | Rickard Green | |
These functions were added in erl_interface-3.11 | |||
2019-03-18 | Fix timeout value when waiting for emulator start | Rickard Green | |
2019-03-18 | Merge pull request #2114 from se-apc/strip_fix | John Högberg | |
Allow list of chunks to be given to strip*() OTP-15680 | |||
2019-03-18 | Merge branch 'ingela/ssl/public_key/verify_fun-doc-error/ERL-887' | Ingela Anderton Andin | |
* ingela/ssl/public_key/verify_fun-doc-error/ERL-887: public_key: Correct documentation of verify_fun | |||
2019-03-18 | public_key: Correct documentation of verify_fun | Ingela Anderton Andin | |
2019-03-18 | lib/compiler/scripts/smoke: Force a local hex | Björn Gustavsson | |
The script would hang if no local hex had been installed previously. | |||
2019-03-18 | Fix initialization of erl_call | Rickard Green | |
Previously erl_call relied on the implicit initialization made of the ei-lib if no explicit initialization had been done. This implicit initialization was utterly broken and was removed in erl_interface-3.11 (OTP 21.3) since it has been documented for a very long time that an explicit initialization is required. | |||
2019-03-18 | code_SUITE: Fix on_load_trace_on_load test | John Högberg | |
Modules like 'merl' and 'erl_prettypr' could be loaded during the actual test, causing them to be traced too. | |||
2019-03-18 | Merge branch 'peterdmv/ssl/client-auth/OTP-15591' | Péter Dimitrov | |
* peterdmv/ssl/client-auth/OTP-15591: ssl: Improve ssl logging ssl: Test handling of signature algorithms ssl: Handle unencrypted Alert (Illegal Parameter) ssl: Improve verification of received Certificate ssl: Fix Alert logging ssl: Fix get_handshake_context/2 ssl: Test HelloRetryRequest with client auth ssl: Verify signature algorithm in CV ssl: Verify CertificateVerify ssl: Test client authentication with certificate ssl: Validate client certificates (TLS 1.3) ssl: Test client authentication (empty cert) ssl: Implement state 'wait_cert' ssl: Add ssl logger support for CertificateRequest ssl: Fix ssl alerts Change-Id: Id4ba14d373f116038a7cb3ff9fc33faed23031c8 | |||
2019-03-18 | public_key: Add AES 256 encryption for old PEM encryption mechanism | Ingela Anderton Andin | |
2019-03-18 | Merge branch 'hans/crypto/fix_chacha20_bug/OTP-15678' | Hans Nilsson | |
* hans/crypto/fix_chacha20_bug/OTP-15678: crypto: Disable chacha20 if OpenSSL 1.1.0-1.1.0c | |||
2019-03-18 | beam_validator: Infer types on both sides of '=:=' | John Högberg | |