Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/bin/bash | |
| 2 | |
| 3 # Helper script for local manual testing. Runs an openssl test server at | |
| 4 # localhost:4433. The server will be accessible for www connections and will | |
| 5 # require a client certificate issued by Client Auth Test Root 1. | |
| 6 openssl s_server \ | |
| 7 -accept 4433 \ | |
| 8 -cert out/root_1.pem \ | |
| 9 -key out/root_1.key \ | |
| 10 -www \ | |
| 11 -Verify 5 \ | |
| 12 -CAfile out/root_1.pem | |
|
Ryan Sleevi
2013/01/29 19:59:49
For checking in, this should be a 'real' test usin
ppi
2013/01/30 15:34:56
This is just a tiny helper that I thought could be
| |
| OLD | NEW |