CHANGES-fs-encryption.txt 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. Hadoop Common Change Log for HDFS-6134 and HADOOP-10150
  2. fs-encryption (Unreleased)
  3. INCOMPATIBLE CHANGES
  4. NEW FEATURES
  5. HADOOP-10734. Implement high-performance secure random number sources.
  6. (Yi Liu via Colin Patrick McCabe)
  7. IMPROVEMENTS
  8. HADOOP-10603. Crypto input and output streams implementing Hadoop stream
  9. interfaces. (Yi Liu and Charles Lamb)
  10. HADOOP-10628. Javadoc and few code style improvement for Crypto
  11. input and output streams. (Yi Liu via clamb)
  12. HADOOP-10632. Minor improvements to Crypto input and output streams.
  13. (Yi Liu)
  14. HADOOP-10635. Add a method to CryptoCodec to generate SRNs for IV. (Yi Liu)
  15. HADOOP-10653. Add a new constructor for CryptoInputStream that
  16. receives current position of wrapped stream. (Yi Liu)
  17. HADOOP-10662. NullPointerException in CryptoInputStream while wrapped
  18. stream is not ByteBufferReadable. Add tests using normal stream. (Yi Liu)
  19. HADOOP-10713. Refactor CryptoCodec#generateSecureRandom to take a byte[].
  20. (wang via yliu)
  21. HADOOP-10693. Implementation of AES-CTR CryptoCodec using JNI to OpenSSL.
  22. (Yi Liu via cmccabe)
  23. HADOOP-10803. Update OpensslCipher#getInstance to accept CipherSuite#name
  24. format. (Yi Liu)
  25. HADOOP-10735. Fall back AesCtrCryptoCodec implementation from OpenSSL to
  26. JCE if non native support. (Yi Liu)
  27. HADOOP-10870. Failed to load OpenSSL cipher error logs on systems with old
  28. openssl versions (cmccabe)
  29. HADOOP-10853. Refactor get instance of CryptoCodec and support create via
  30. algorithm/mode/padding. (Yi Liu)
  31. HADOOP-10919. Copy command should preserve raw.* namespace
  32. extended attributes. (clamb)
  33. HDFS-6873. Constants in CommandWithDestination should be static. (clamb)
  34. OPTIMIZATIONS
  35. BUG FIXES
  36. HADOOP-10871. incorrect prototype in OpensslSecureRandom.c (cmccabe)
  37. HADOOP-10886. CryptoCodec#getCodecclasses throws NPE when configurations not
  38. loaded. (umamahesh)