Skip to content
Snippets Groups Projects
  1. Aug 01, 2018
  2. Jul 27, 2018
  3. Jul 13, 2018
  4. Jul 03, 2018
    • Thai Duong's avatar
      Always use the latest Tink configs during registration. · 571a7261
      Thai Duong authored
      Instead of
      
      Config.register(AeadConfig.TINK_1_1_0);
      
      We'd do
      
      AeadConfig.register();
      
      I kept the static init blocks in AeadConfig, but it's only for backward compatibility. We'd always require users calling the init function. This gives us consistency across all languages.
      
      I also deprecated TINK_1_1_0 and introduced LATEST which contains the configs of the latest version.
      
      Advanced users can always do Config.register(myCustomConfig);
      
      PiperOrigin-RevId: 203125864
      GitOrigin-RevId: cd138962f88ff693e9c13cef3399f956f6d6513e
      571a7261
  5. Jun 27, 2018
    • Tink Team's avatar
      Correcting typos · 6625fcf2
      Tink Team authored
      PiperOrigin-RevId: 200027939
      GitOrigin-RevId: b75376f8434bf4b5192faf8efb3338c6393df363
      6625fcf2
  6. Jun 09, 2018
  7. May 24, 2018
  8. Apr 18, 2018
    • Thai Duong's avatar
      Bumping the version number to 1.1.0. · 0c926bae
      Thai Duong authored
      Also adding a roadmap, a hacking guide for Java, and updating docs.
      
      PiperOrigin-RevId: 193400792
      GitOrigin-RevId: d78fbf17c2bd90240a411ed196cf430904347847
      0c926bae
  9. Mar 26, 2018
  10. Mar 23, 2018
  11. Jan 04, 2018
  12. Oct 03, 2017
    • Thai Duong's avatar
      Making headers in Java-HOWTO linkable. · c4f271a2
      Thai Duong authored
      Also fixing a small typo in README.
      
      Change-Id: I9c63f12e7f73488cd8acef2011f9c91181770f2d
      ORIGINAL_AUTHOR=Thai Duong <thaidn@google.com>
      GitOrigin-RevId: eab43f5125abef1bc60eaa0b47f0c5b6d291b884
      c4f271a2
  13. Sep 25, 2017
    • Thai Duong's avatar
      Fixing macOS build. · dc732509
      Thai Duong authored
      Change-Id: I862c1f90580f32d99d9cf4c44430f749801a0574
      ORIGINAL_AUTHOR=Thai Duong <thaidn@google.com>
      GitOrigin-RevId: afd20aad283aaae1741e368d7f19208f2291eca7
      dc732509
  14. Sep 23, 2017
  15. Sep 11, 2017
    • Bartosz Przydatek's avatar
      Minor corrections to README.md · 1ee49456
      Bartosz Przydatek authored
      Change-Id: I0b635789fa68815f0b84377ccd21a97bec038fca
      ORIGINAL_AUTHOR=Bartosz Przydatek <przydatek@google.com>
      GitOrigin-RevId: c2450855999f4a068cbba21050c4552f31a94a66
      1ee49456
  16. Sep 08, 2017
  17. Jul 11, 2017
  18. Jun 15, 2017
  19. Jun 01, 2017
  20. May 25, 2017
  21. May 24, 2017
  22. May 22, 2017
  23. May 19, 2017
  24. Mar 23, 2017
  25. Mar 22, 2017
    • Thai Duong's avatar
      Basic infrastructure. · 433c7b23
      Thai Duong authored
      - Directory structure follows TensorFlow.
      - Rules for protobuf building are based on https://github.com/pubref/rules_protobuf, as I can't find anything simpler.
      - Continuous integration with Kokoro (work in progress).
      
      I also copied some existing Java/CC code from Bartosz and Daniel's experimental folders.
      
      Change-Id: I7f993934d149c114320e3388fee84fbdafd7ba81
      433c7b23
Loading