You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BeanIO is used to generate the formatted files in one of our projects @ our org.
It is well-versed and helped to generate the all type of specifications such as .csv, delimited, fixed-length..etc
As a payment company, we have to stick with PCI compliance, the files should not be readable by anyone immediately, because it may contain Personal Identifiable Information. BeanIO is enhanced to generate the encrypted file. Encryption is based on PGP; bouncy-castle Open Source APIs are used to generated the PGP encrypted content.
We would like to contribute this commits into BeanIO framework. So that it will be available to public, if anyone wants to generated the PGP content, then it will be quite useful.
As part of this we have added few new classes and modified few classes. We would like to know if we can commit our changes and if yes, please let us know if there is any process to be followed
The text was updated successfully, but these errors were encountered:
It turns out I'm in the exact same scenario. In my current project we have to generate flat files, and to be PCI-compliant we encrypt those with PGP, with the help of Bouncy GPG (which is a fancy API around Bouncy Castle).
IMO, generating a file and encrypting it are two separate concerns. I'm not sure it would a good idea to integrate this directly into BeanIO. What happens when someone needs to use another encryption mechanism? What happens when people are not interested in PGP encryption, and BeanIO pulls Bouncy Castle deps automatically in their project?
The Bouncy GPG API is used to create an OutputStream. BeanIO's writer accepts a Writer. It's very simple to plug those two together with an OutputStreamWriter, no need to support it out of the box.
We could mention how to encrypt files in the docs though, or perhaps provide a sample project somewhere.
BeanIO is used to generate the formatted files in one of our projects @ our org.
It is well-versed and helped to generate the all type of specifications such as .csv, delimited, fixed-length..etc
As a payment company, we have to stick with PCI compliance, the files should not be readable by anyone immediately, because it may contain Personal Identifiable Information. BeanIO is enhanced to generate the encrypted file. Encryption is based on PGP; bouncy-castle Open Source APIs are used to generated the PGP encrypted content.
We would like to contribute this commits into BeanIO framework. So that it will be available to public, if anyone wants to generated the PGP content, then it will be quite useful.
As part of this we have added few new classes and modified few classes. We would like to know if we can commit our changes and if yes, please let us know if there is any process to be followed
The text was updated successfully, but these errors were encountered: