Skip to content
Snippets Groups Projects
  1. Aug 28, 2019
  2. Aug 21, 2019
  3. Jul 01, 2019
  4. Jun 28, 2019
  5. Jun 26, 2019
  6. Jun 07, 2019
    • Albert Pastrana's avatar
      Fixes reference to AES128_GCM · 49be6ddd
      Albert Pastrana authored
      There were a couple of places where `AeadKeyTemplates.AES_128_GCM` was mentioned. Replaced it with `AeadKeyTemplates.AES128_GCM` as it's the correct name of the constant.
      49be6ddd
  7. Jun 05, 2019
  8. Jun 04, 2019
  9. May 10, 2019
  10. May 09, 2019
  11. Feb 04, 2019
  12. Jan 24, 2019
  13. Nov 14, 2018
  14. Nov 12, 2018
  15. Oct 02, 2018
  16. Oct 01, 2018
  17. Aug 09, 2018
  18. Aug 01, 2018
  19. Jul 27, 2018
  20. Jul 13, 2018
    • Charles Lee's avatar
      Update version references to 1.2.0-rc2. · e68edc7b
      Charles Lee authored
      Also, remove stale references to v1.1.0 in TinkConfig.register() documentation.
      
      PiperOrigin-RevId: 204529434
      GitOrigin-RevId: a99dbe6bb14b02c1411e7baa6ef017ec72d89baf
      e68edc7b
  21. Jul 11, 2018
  22. 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
  23. Jun 09, 2018
  24. May 24, 2018
  25. Apr 19, 2018
  26. Apr 18, 2018
  27. Apr 13, 2018
  28. Apr 12, 2018
  29. Apr 04, 2018
  30. Mar 26, 2018
  31. Mar 23, 2018
    • Thai Duong's avatar
      Graduating ChaCha20Poly1305 from @Alpha. · bf7fef14
      Thai Duong authored
      Removing XChaCha20 and XSalsa20 because the former is too new and the latter is unlikely to be useful.
      
      PiperOrigin-RevId: 190090084
      GitOrigin-RevId: f25d42fd99e1bc7c4aaeb3cdeae90ca06ae21a43
      bf7fef14
    • Thai Duong's avatar
      Instead of reading key templates from disk, Tinkey now accepts key templates... · 68195f53
      Thai Duong authored
      Instead of reading key templates from disk, Tinkey now accepts key templates whose name is declared in Tink.
      
      To create a keyset containing an AES128_GCM key, run
      
      tinkey create-keyset --key-template AES128_GCM
      
      Also removing the CreateKeyTemplate command and adding ListKeyTemplates.
      
      PiperOrigin-RevId: 190088937
      GitOrigin-RevId: 199694ecd4af61e512ea86249e5f5c9ba6684411
      68195f53
  32. Feb 28, 2018
    • Thai Duong's avatar
      Using HEAD-SNAPSHOT version name for snapshots. · 488e6fb9
      Thai Duong authored
      This is neater than x.y.z-SNAPSHOT because we don't have to update
      the POM files when we release new snapshots which are always built
      from HEAD of the master branch.
      
      Change-Id: I07ded75e3e837b03db077787791599291ca6d478
      ORIGINAL_AUTHOR=Thai Duong <thaidn@google.com>
      GitOrigin-RevId: 95e2fc58566c73d633eb180191b63b868d1c6804
      488e6fb9
  33. Feb 27, 2018
    • Google Engineers's avatar
      Generate Maven jars with Bazel. · de97714f
      Google Engineers authored
      We no longer need to maintain Maven as a separate build and test system.
      This would save us a lot of time, as Maven is not exactly nice to deal
      with.
      
      This also allows us to simplify the poms, especially the dependencies.
      For example, to use Tink for Android users no longer have to set
      $ANDROID_HOME.
      
      Change-Id: I925b37409f8ed5e32f228d8de0f0845ea38bc427
      ORIGINAL_AUTHOR=Google Engineers <noreply@google.com>
      GitOrigin-RevId: 49470c492c6bc1d28960c243b671208863ccdf6b
      de97714f
  34. Dec 11, 2017
    • Bartosz Przydatek's avatar
      Cleanup after sync. · 3c2ddc3f
      Bartosz Przydatek authored
      Change-Id: I81bcff21d8d31e0331639b438e1115e7bc66c801
      ORIGINAL_AUTHOR=Bartosz Przydatek <przydatek@google.com>
      GitOrigin-RevId: 5ba02c56561408fb59aff39e1bdb0f756484dab4
      3c2ddc3f
    • Bartosz Przydatek's avatar
      Fixing primitives-table in Java-howto doc. · 7f8e5c41
      Bartosz Przydatek authored
      Change-Id: I2e654a1c5925f8a3bb0cebe53e6a7c405cbc0d84
      ORIGINAL_AUTHOR=Bartosz Przydatek <przydatek@google.com>
      GitOrigin-RevId: 566e7c317456c3fb52192d731b0b1fca6fcab590
      7f8e5c41
  35. Nov 10, 2017
Loading