1. 97a0a08 Implement exporters for TLS 1.3 in Go. by David Benjamin · 9 years ago
  2. c87ebde Fix up TLS 1.3 PSK placeholder logic in the Go code. by David Benjamin · 9 years ago
  3. c78aa4a Don't crash on EnableAllCiphers in deriveTrafficAEAD. by David Benjamin · 9 years ago
  4. 9deb117 Temporarily skip resumption in 1.3 cipher suite tests. by David Benjamin · 9 years ago
  5. 1edae6b Make WrongCertificateMessageType work in both 1.3 and 1.2. by David Benjamin · 9 years ago
  6. 6f8f4de Set m.raw in encryptedExtensionsMsg. by David Benjamin · 9 years ago
  7. 49864a5 Use new APIs in bssl tool for connection info. by David Benjamin · 9 years ago
  8. 54c217c Forbid PSK ciphers in TLS 1.3 for now. by David Benjamin · 9 years ago
  9. 7944a9f Account for key size when selecting RSA-PSS. by David Benjamin · 9 years ago
  10. 1c25654 RSA_marshal_private_key: add missing CBB_flush() by Matt Braithwaite · 9 years ago
  11. 8d343b4 Implement client certificates for TLS 1.3 in Go. by David Benjamin · 9 years ago version_for_cocoapods_5.0
  12. 615119a Add OCSP stapling and SCT list support to 1.3 servers in Go. by David Benjamin · 9 years ago
  13. 728eed8 Implement basic TLS 1.3 server handshake in Go. by Nick Harper · 9 years ago
  14. 1f61f0d Implement TLS 1.3's downgrade signal. by David Benjamin · 9 years ago
  15. 0a8deb2 Remove ourSigAlgs parameter to selectSignatureAlgorithm. by David Benjamin · 9 years ago
  16. 29bb140 Move isSupportedSignatureAlgorithm calls to verifyMessage in Go. by David Benjamin · 9 years ago
  17. 7a41d37 Configure verify/sign signature algorithms in Go separately. by David Benjamin · 9 years ago
  18. eff1e8d Adding RSA-PSS signature algorithms. by Steven Valdez · 9 years ago
  19. 0c22295 Update run_android_tests.go for test cert changes. by David Benjamin · 9 years ago
  20. fd5c45f Add support for RSA-PSS to the TLS 1.3 Go code. by David Benjamin · 9 years ago
  21. 1fb125c Enforce ECDSA curve matching in TLS 1.3. by David Benjamin · 9 years ago
  22. 75ea5bb Don't check certificates against the curve list in TLS 1.3. by David Benjamin · 9 years ago
  23. 3386326 Match ECDSA curve with hash in tests. by David Benjamin · 9 years ago
  24. 887c300 Move the key type check from tls12_check_peer_sigalg to ssl_verify_*. by David Benjamin · 9 years ago
  25. a95e9f3 Test that signature verification checks the key type. by David Benjamin · 9 years ago
  26. 51dd7d6 Don't fall back to SHA-1 in TLS 1.3, only TLS 1.2. by David Benjamin · 9 years ago
  27. a2d81f1 Don't decompose signature algorithms in ssl_rsa.c. by David Benjamin · 9 years ago
  28. 6b8509a Add default handlers for extension parsing. by Steven Valdez · 9 years ago
  29. 310d3f6 Change |EVP_PKEY_up_ref| to return int. by Adam Langley · 9 years ago
  30. 27516f7 Add no-op function ENGINE_register_all_complete. by Adam Langley · 9 years ago
  31. ea9a0d5 Refine SHA-1 default in signature algorithm negotiation. by David Benjamin · 9 years ago
  32. d246b81 Don't decompose sigalgs in key preferences. by David Benjamin · 9 years ago
  33. 0aa25bd Don't call tls12_get_hash in the server handshake. by David Benjamin · 9 years ago
  34. 7bf80e1 Rename util/BUILD to as not to confuse Bazel. by Adam Langley · 9 years ago
  35. 10f97f3 Revert "Move C++ helpers into |bssl| namespace." by Adam Langley · 9 years ago
  36. d2b5af5 Revert scoped_types.h change. by Adam Langley · 9 years ago
  37. a125f04 Add commit queue config for auto-testing of changes. by Andrii Shyshkalov · 9 years ago
  38. 8d79ed6 Assume that MSVC supports C++11. by Adam Langley · 9 years ago
  39. 19fdcb5 Don't #include header files in extern "C" blocks. by Adam Langley · 9 years ago
  40. 0ee3193 Breaking news: 1998 has come and gone. by David Benjamin · 9 years ago
  41. ee51a22 Add a missing flushHandshake call to the TLS 1.3 handshake. by David Benjamin · 9 years ago
  42. 8c3c313 Remove scoped_types.h. by Adam Langley · 9 years ago
  43. 09feb0f Move C++ helpers into |bssl| namespace. by Adam Langley · 9 years ago
  44. 09eb655 Simplify ssl_get_message somewhat. by David Benjamin · 9 years ago
  45. 528bd26 Don't use init_buf in DTLS. by David Benjamin · 9 years ago
  46. df759b5 Allow CECPQ1 cipher suites to do False Start. by Adam Langley · 9 years ago
  47. 4748944 Reorder functions in bn_test. by David Benjamin · 9 years ago
  48. ffb7adc Convert BN_mod_sqrt tests to bn_tests.txt. by David Benjamin · 9 years ago
  49. 61367ee Set variables to avoid false-positive compiler warnings. by Adam Langley · 9 years ago
  50. 403c52a Support “-starttls smtp” in `bssl client` by Adam Langley · 9 years ago
  51. abe22b6 BUILD: drop -fvisibility=hidden. by Adam Langley · 9 years ago
  52. 7a4b404 Remove SSL_get_server_key_exchange_hash. by David Benjamin · 9 years ago
  53. 397c8e6 Forbid renegotiation in TLS 1.3. by David Benjamin · 9 years ago
  54. 71dd666 Test that stray HelloRequests during the handshake are ignored. by David Benjamin · 9 years ago
  55. 97718f1 Move references to init_buf into SSL_PROTOCOL_METHOD. by David Benjamin · 9 years ago
  56. a2c42d7 Rename (s3,d1)_meth.c. by David Benjamin · 9 years ago
  57. 0d099f0 Define RAND_cleanup in one place only by Alessandro Ghedini · 9 years ago
  58. 85f20c2 Implement downgrade signaling in Go. by Nick Harper · 9 years ago
  59. 4dbdf94 Push V2ClientHello handling into ssl3_get_message. by David Benjamin · 9 years ago
  60. f25dda9 Split readClientHello in two. by David Benjamin · 9 years ago
  61. 7d79f83 Pull Go TLS server extension logic into its own function. by David Benjamin · 9 years ago
  62. 44b33bc Implement OCSP stapling and SCT in Go TLS 1.3. by David Benjamin · 9 years ago
  63. 82261be Improve CCS/Handshake synchronization tests. by David Benjamin · 9 years ago
  64. b41d2e4 Implement basic TLS 1.3 client handshake in Go. by Nick Harper · 9 years ago
  65. 582ba04 Add tests for packed handshake records in TLS. by David Benjamin · 9 years ago
  66. 7510140 Move Go server extension logic to a separate function. by David Benjamin · 9 years ago
  67. f8b0e70 Add parsing logic for the three new TLS 1.3 extensions. by Nick Harper · 9 years ago
  68. 34a3c49 Simplify TLS reuse_message implementation. by David Benjamin · 9 years ago
  69. c937ede Remove backslash. by David Benjamin · 9 years ago
  70. affdee9 Update documentation to reference the “master-with-bazel” branch. by Adam Langley · 9 years ago
  71. 2304447 No-op change to trigger the new Bazel bot. by Adam Langley · 9 years ago
  72. 5a09d02 No-op change to trigger the new Bazel bot. by Adam Langley · 9 years ago
  73. 8701055 No-op change to trigger the new Bazel bot. by Adam Langley · 9 years ago
  74. ff26f09 Fix c.in.decrypt error handling in runner. by David Benjamin · 9 years ago
  75. 95c6956 Add version tolerance tests for DTLS. by David Benjamin · 9 years ago
  76. ce9a216 Document that BN_mod_sqrt assumes p is a prime. by David Benjamin · 9 years ago
  77. 4cb00ba Convert test_exp to bn_tests.txt. by David Benjamin · 9 years ago
  78. ad6d33c Convert test_mod_exp_mont5 test vectors. by David Benjamin · 9 years ago
  79. 45a8c8a Convert test_mod_exp and test_mod_exp_consttime. by David Benjamin · 9 years ago
  80. 28a8c2f Fold the rest of test_sqrt into TestSquare. by David Benjamin · 9 years ago
  81. 5a13e40 Convert test_mont and test_mod_mul to bn_tests.txt. by David Benjamin · 9 years ago
  82. e8317a5 Add tests for BN_nnmod. by David Benjamin · 9 years ago
  83. 7819409 Generate more test data in test_mont. by David Benjamin · 9 years ago
  84. 56cbbe5b Use BN_set_bit in TestLShift1. by David Benjamin · 9 years ago
  85. 66a0e6e Add a Go tool to check bn_tests.txt. by David Benjamin · 9 years ago
  86. 0186787 Add top-level BUILD file (in util/). by Adam Langley · 9 years ago
  87. 7505144 Extract certificate message processing in Go. by David Benjamin · 9 years ago
  88. a6f8263 Extract Go CertificateRequest logic into a helper. by David Benjamin · 9 years ago
  89. 7e0442a Rewrite Go Certificate and CertificateRequest serialization. by Nick Harper · 9 years ago
  90. e5d577d Add Go HKDF implementation with test. by Nick Harper · 9 years ago
  91. b3d51be Split ServerHello extensions into a separate struct. by Nick Harper · 9 years ago
  92. 1701776 Clarify how Quotient tests do rounding. by David Benjamin · 9 years ago
  93. 5212ef8 Reimplement serverHelloMsg with byteBuilder in Go. by Nick Harper · 9 years ago
  94. 8dda5cc Add a Go version of CBB and convert ClientHello marshaling to it. by Nick Harper · 9 years ago
  95. d94b83b Rename Channel ID's EncryptedExtensions to just ChannelID in C. by David Benjamin · 9 years ago
  96. cedff87 Add TLS 1.3 constants from draft 13 to Go. by David Benjamin · 9 years ago
  97. 24599a8 Rename EncryptedExtensions in Go in preparation for TLS 1.3. by David Benjamin · 9 years ago
  98. cecee27 Fix the Go code to be aware of DTLS version bounds. by David Benjamin · 9 years ago
  99. 4c3ddf7 Explicitly mark nearly every test at TLS 1.2. by David Benjamin · 9 years ago
  100. 60edffd Change SignatureAndHashAlgorithm to SignatureScheme in Go. by Nick Harper · 9 years ago