Reputation: 704
Is it possible to encrypt small amount of data, like byte arrays
, with Conceal API? I'm interested in its performance, but I don't need to encrypt files.
Does it have javadoc
documentation? Sample of code would be very appreciated.
Thank you.
Upvotes: 2
Views: 252
Reputation: 61
The official Conceal Documentation is the facebook conceal github page, you can find some usage examples.
Basically conceal helps you encrypt streams of information so I think it is possible to encrypt any OutputStream you choose using Conceal.
Upvotes: 1