Skip to content
Snippets Groups Projects
  1. Aug 22, 2016
    • akwizgran's avatar
      Use one connection per dev report. · c6c62cab
      akwizgran authored
      This allows simpler server-side code, and a failure part-way through sending won't require restarting from the beginning next time.
      c6c62cab
  2. Apr 21, 2016
  3. Apr 20, 2016
  4. Mar 30, 2016
  5. Mar 26, 2016
  6. Feb 02, 2016
  7. Jan 20, 2016
  8. Dec 14, 2015
  9. Jan 09, 2015
  10. Jan 06, 2015
  11. Dec 29, 2014
    • akwizgran's avatar
      Don't try to erase secrets from memory. · 358166bc
      akwizgran authored
      1. The things we're really trying to protect - contact identities,
      message contents, etc - can't be erased from memory because they're
      encapsulated inside objects we don't control.
      
      2. Long-term secrets can't be protected by erasing them from memory
      because they're stored in the database and the database key has to be
      held in memory whenever the app's running.
      
      3. If the runtime uses a compacting garbage collector then we have no
      way to ensure an object is erased from memory.
      
      4. Trying to erase secrets from memory makes the code more complex.
      
      Conclusion: Let's not try to protect secrets from an attacker who can
      read arbitrary memory locations.
      358166bc
  12. Nov 04, 2014
  13. Oct 08, 2014
  14. Jan 08, 2014
  15. Dec 19, 2013
    • akwizgran's avatar
      Replaced private messages with private groups. · 0dc86922
      akwizgran authored
      Private messages are now the same as group messages, but groups can be
      private or public. When a contact is added, a private group is created
      and designated as the inbox for exchanging private messages with the
      contact.
      0dc86922
  16. Jun 17, 2013
  17. Jun 14, 2013
  18. Apr 30, 2013
    • akwizgran's avatar
      Removed bundle encryption. · d5720c08
      akwizgran authored
      Android doesn't currently store bundles persistently, so it's premature
      to protect against accidental information leaks through persistent
      bundle storage. Protecting against deliberate information leaks by the
      OS is probably futile, so there's currently no need for bundle
      encryption.
      d5720c08
  19. Apr 16, 2013
  20. Mar 29, 2013
  21. Feb 19, 2013
  22. Feb 18, 2013
  23. Dec 05, 2012
  24. Nov 13, 2012
  25. Nov 12, 2012
  26. Oct 30, 2012
  27. Oct 24, 2012
  28. Sep 23, 2012
  29. Aug 28, 2012
  30. May 24, 2012
    • akwizgran's avatar
      Use AES/GCM instead of AES/CTR and HMAC. · d6b260ed
      akwizgran authored
      This makes us Suite B compliant and saves 32 bytes per frame. The
      AES/GCM implementation refuses to decrypt the frame header before
      checking the MAC, so we have to use AES/CTR to peek at the header. The
      header is still covered by the MAC, and we still check it after peeking!
      d6b260ed
  31. Apr 28, 2012
  32. Mar 29, 2012
  33. Feb 24, 2012
  34. Feb 23, 2012
  35. Feb 06, 2012
  36. Jan 17, 2012
Loading