summaryrefslogtreecommitdiffstats
path: root/jrt
Commit message (Collapse)AuthorAgeFilesLines
* Remove VespaHttpClientBuilder from security-utilsBjørn Christian Seime2019-04-051-10/+0
|
* Exclude http libraries from security-utilsBjørn Christian Seime2019-04-041-0/+10
|
* Preload whta you need during shutdown to avoid exceptions due to unloaded ↵Henning Baldersheim2019-03-131-0/+5
| | | | bundle.
* async tls handshake in jrtHåvard Pettersen2019-02-286-65/+248
|
* Revert "async tls handshake in jrt"Harald Musum2019-02-276-248/+65
|
* Merge pull request #8617 from vespa-engine/havardpe/async-tls-handshake-in-jrtBjørn Christian Seime2019-02-276-65/+248
|\ | | | | async tls handshake in jrt
| * async tls handshake in jrtHåvard Pettersen2019-02-266-65/+248
| |
* | Log when slobrok request failsHarald Musum2019-02-261-0/+2
| |
* | Revert "Add some debug logging for trying to track down Slobrok issue"Harald Musum2019-02-262-6/+0
| |
* | Add some debug logging for trying to track down an issueHarald Musum2019-02-252-0/+6
|/
* Require client auth for ssl engines constructed by DefaultTlsContextBjørn Christian Seime2019-02-191-1/+0
|
* Revert "Bjorncs/jdisc mixed mode preparations"Arnstein Ressem2019-02-181-0/+1
|
* Merge pull request #8511 from vespa-engine/bjorncs/jdisc-misc-mode-preparationsBjørn Christian Seime2019-02-181-1/+0
|\ | | | | Bjorncs/jdisc mixed mode preparations
| * Require client auth for ssl engines constructed by DefaultTlsContextBjørn Christian Seime2019-02-141-1/+0
| |
* | Fix bug where authorization result was never assignedBjørn Christian Seime2019-02-181-1/+1
| |
* | Do heavy computation work as an explicit handshake stepBjørn Christian Seime2019-02-186-16/+43
|/ | | | | | Move execution of SSLEngine's delegated tasks to a separate method doHandshakeWork(). This is a preparation for performing computation heavy handshake work in a separate thread.
* Report values from initial snapshotBjørn Christian Seime2019-01-291-0/+2
| | | | | Initialize JrtMetrics with empty snapshot so that the values of the first real snapshot are reported.
* Merge pull request #8218 from vespa-engine/bjorncs/tlsTor Brede Vekterli2019-01-245-10/+9
|\ | | | | bjorncs/tls
| * Prefix names of jrt threads with 'jrt'Bjørn Christian Seime2019-01-244-4/+4
| |
| * Use 'prime256v1' curve for EC keysBjørn Christian Seime2019-01-231-7/+5
| | | | | | | | | | This allows the TLS test in jrt to use elliptic curves crypto in unit tests (fixes issue where JSSE cannot find matching cipher).
| * Allow configuration of accepted ciphersBjørn Christian Seime2019-01-231-1/+2
| |
* | Add calculation of metrics changes since previous snapshotBjørn Christian Seime2019-01-222-20/+45
| | | | | | | | | | | | | | | | - Move metric diff calculation to TransportMetrics.Snapshot. - Remove TransportMetrics.reset() and use changesSince() instead in EchoTest. - Remove unnecessary volatile modifier on JrtMetrics.previousSnapshot. - Initialize JrtMetrics.previousSnapshot in constructor. - Use separate field declarations for fields in TransportMetrics.Snapshot.
* | Make TransportMetrics a singletonBjørn Christian Seime2019-01-2211-45/+58
| |
* | Add method to create snapshot of transport metricsBjørn Christian Seime2019-01-221-0/+35
|/
* 6-SNAPSHOT -> 7-SNAPSHOTArnstein Ressem2019-01-211-2/+2
|
* Return default values when env vars are not presentBjørn Christian Seime2019-01-151-5/+4
|
* more robust testingHåvard Pettersen2019-01-102-15/+15
| | | | | | - add volatile to ensure visibility - try for longer to ensure wanted state is reached also when load is high - sleep for shorter to make test run faster and also protect against interruptions
* Add metrics for jrt transportBjørn Christian Seime2019-01-0811-65/+218
|
* Store authorization result in TlsCryptoSocketBjørn Christian Seime2019-01-081-1/+10
|
* ThreadLocalRandom is recommended over Random in multithreaded environments, ↵Håkon Hallingstad2018-12-201-3/+2
| | | | try 2
* Nonfunctional changes onlyJon Bratseth2018-12-131-3/+5
|
* Use AuthorizationMode to configure behaviour of PeerAuthorizerTrustManagerBjørn Christian Seime2018-12-052-4/+5
|
* Move MixedMode to separate classBjørn Christian Seime2018-12-051-1/+1
|
* Use DefaultTlsContext in jrt unit testsBjørn Christian Seime2018-12-051-53/+17
|
* Split ConfigFileManagedTlsContext into ReloadingTlsContext and DefaultTlsContextBjørn Christian Seime2018-12-051-2/+2
|
* Update TODO commentBjørn Christian Seime2018-12-051-1/+1
|
* Close the cryptoengine in order to get to close the tls context.Henning Baldersheim2018-12-034-3/+18
|
* Add TODOBjørn Christian Seime2018-11-281-0/+1
|
* Use TlsContext to construct TlsCryptoEngineBjørn Christian Seime2018-11-285-30/+39
|
* Enable PeerAuthorizer in dry-run mode in TlsCryptoSocketBjørn Christian Seime2018-11-271-0/+5
|
* Use PeerAuthorizer in TLS unit tests of jrtBjørn Christian Seime2018-11-272-0/+29
|
* Use TransportSecurityOptions.BuilderBjørn Christian Seime2018-11-191-10/+5
|
* detect eof during tls handshake detectionHåvard Pettersen2018-11-091-1/+3
|
* Revert "Bjorncs/accepted ciphers"Harald Musum2018-11-071-16/+6
|
* Allow configuration of accepted ciphersBjørn Christian Seime2018-11-061-6/+16
|
* No * importHenning Baldersheim2018-11-061-2/+15
|
* Verify handshake is complete in write() + flush()Bjørn Christian Seime2018-11-051-0/+2
|
* Add more debug logging to TlsCryptoSocketBjørn Christian Seime2018-11-051-0/+4
|
* Move classes in com.yahoo.security to security-utilsBjørn Christian Seime2018-10-191-5/+6
|
* Revert "Move classes in com.yahoo.security to security-utils"Harald Musum2018-10-191-6/+5
|