In a nutshell, we employ log4cxx in our application as our central logging facility, however, for security purposes we require that in deployed(released) systems all logging output generated by the application regardless of appender type (i.e. console, files, socket, etc) be encrypted using AES 256-bit encryption.
Of course, when under development, we'd like to have the ability to toggle encryption on and off as needed.
After some poking around in the log4cxx code base, one approach that we came upon on was to derive a new type of LoggingEventPatternConverter (i.e. EncryptedMessagePatternConverter) class and add corresponding Pattern Conversion character '%e' that when specified would trigger the encryption of just the message component of a particularly logging statement.
For example, given the following:
Sample Code { ... ... LOG4CXX_INFO(logger, "Some secret data blah blab blah"); ... ... }
Log4cxx Conversion Pattern(s)
A) log4j.appender.rolling.layout.ConversionPattern=%p %t %c - %m%n
and
B) log4j.appender.rolling.layout.ConversionPattern=%p %t %c - %e%n
Note, the '%e' would trigger the encryption of the message component of this log
entry.
Resulting Output (for both A and B modes of operation -- open txt vs. encrypted)
A) INFO 0xFC100 com.me.MyClass - Some secret data blah blab blah
B) INFO 0xFC100 com.me.MyClass - B2138739516B00E0DE8DBD58DE29AD1A
Questions:
1) What are your thoughts in general about this overall approach? Is there a better way to achieve our goals? If so, what would be your recommendations? 2) We've attempted to employ the cryptopp 5.6.1 AES encryption/decryption routines but have run into problems decrypting our encrypted log files. In particular, we get the exception "StreamTransformationFilter: ciphertext length is not a multiple of block size"
Btw, we've studied a number of Crypto++ 5.6.1 examples found here -- http://www.cryptopp.com/wiki/External_Samples but haven't found any that illustrate our specific approach (i.e. the encryption and decryption of specific fields of a file vs. the entire file itself).
Thanks in advance for your thoughts, pointers, and suggestions.