Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i got following problem: I want to encrypt files on multiple platforms. e.g anroid, windows, linux ... for windows and linux i use openssl or gnupg for de/encryption. i use x509 certificates for that. i already managed that i can encrypt and decrypt with both of these (cross) but now i also want to encrypt and decrypt my files on my android phone. but i dont find any library which encrypts in the way i want. basically i want to encrypt in smime. bouncycastle is not a great help, because it just encrypts mails. so i could write my own little library which does exactly what i want (already got des3, which gnupg and openssl can use and understand) but now i have the problem, that i dont find any documentation on what these 2 programs really do. i know that i generate a random des3 key and encrypt it with my rsa keys. but how should i put that into a file which the others can read?

so the problem is just: how to put data in file, so that openssl and/or gnupg can decrypt it

maybe someone knows where the binary specs for these files are?

result should be, that i encrypt a file with my java stuff, and then decrypt it with kleopatra+gnupg (puts out(and reads) a binary file) and of course i also want to decrypt with my java stuff

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.