Skip to content
Snippets Groups Projects
  1. Mar 20, 2019
  2. Mar 05, 2019
  3. Feb 21, 2019
  4. Feb 15, 2019
  5. Feb 12, 2019
  6. Feb 11, 2019
  7. Feb 02, 2019
  8. Jan 25, 2019
  9. Jan 16, 2019
  10. Jan 10, 2019
  11. Jan 09, 2019
  12. Nov 28, 2018
  13. Oct 19, 2018
  14. Oct 09, 2018
    • Tink Team's avatar
      Add constructor for ECDSA verifier which takes an EC_KEY. · 9b1116f5
      Tink Team authored
      Key Transparency gets keys in DER format, which can be easily deserialized into an EC_KEY. Extracting the curve and x,y points to make an EcKey struct which will then be converted back to an EC_KEY seemed unnecessary.
      
      PiperOrigin-RevId: 215790073
      GitOrigin-RevId: 55ec839d1cf516c8ab7ba9461d854b542643bc16
      9b1116f5
  15. Oct 04, 2018
  16. Oct 02, 2018
  17. Sep 26, 2018
  18. Sep 20, 2018
  19. Sep 11, 2018
    • Daniel Bleichenbacher's avatar
      C++ version of AES-SIV. · f048e88e
      Daniel Bleichenbacher authored
      The implementation uses old OpenSSL interfaces for AES.
      I haven't found a good way to use newer ones.
      Possibly, it is easier to just rewrite the code with intrinsics.
      
      PiperOrigin-RevId: 212435613
      GitOrigin-RevId: 6176b392469957303d3ebb34af794d422f5f34df
      f048e88e
  20. Sep 05, 2018
    • Tink Team's avatar
      Switch AesGcmBoringSsl to EVP_AEAD. · 48d066cd
      Tink Team authored
      EVP_CIPHER is the legacy OpenSSL API that's kind of a disaster, hence recent
      issues around null pointers and the like. New code should be written against
      EVP_AEAD which is much more sensible. Notably, this file is about half as long
      now.
      
      On top of things, this should be more efficient as it allows BoringSSL to reuse
      the AES key schedule. (EVP_AEAD_CTX is immutable after initialization. It can
      used multiple times or concurrently or whatever.)
      
      PiperOrigin-RevId: 211020450
      GitOrigin-RevId: 0734d56e3432c24e9e75e78accefd6ae36eb9be4
      48d066cd
  21. Aug 30, 2018
  22. Aug 09, 2018
Loading