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