こんにちは、PDFファイルを暗号化および復号化するための無料のAPIまたは簡単なコードを探しています。暗号化は、ストリームからファイルをダウンロードするときに行う必要があります。
while ((bufferLength = inputStream.read(buffer)) > 0) {
/*
* Writes bufferLength characters starting at 0 in buffer to the target
*
* buffer the non-null character array to write. 0 the index
* of the first character in buffer to write. bufferLength the maximum
* number of characters to write.
*/
fileOutput.write(buffer, 0, bufferLength);
}
PDFリーダーで開く必要があるときに復号化します。たぶん、これにはいくつかの情報、コード、または無料の Api がありますか? 誰かがこのようなことをしましたか?
私はいくつかのコードとAPIを見つけました。しかし、今のところ良いことは何もありません。
ありがとう。