aboutsummaryrefslogtreecommitdiffstats
path: root/java/jni
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2022-08-05 18:25:26 +0200
committerSven Gothel <[email protected]>2022-08-05 18:25:26 +0200
commitb423936eed1aefaa1d934483b75bf19a9f87b28f (patch)
treeed21cfdd8cec378962f779dbd88734b5dd1efd91 /java/jni
parent78cc0fce68a3a101350442c5643b5d2177595822 (diff)
Adopt to Botan agnostic jaulib changes, use a Botan::DataSource wrapper, map a secure_vector using Botan::secure_allocator<T>, use a local matching read_stream w/ Botan compatible secure_vector
Diffstat (limited to 'java/jni')
-rw-r--r--java/jni/cipherpack/CipherpackListener.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/jni/cipherpack/CipherpackListener.cxx b/java/jni/cipherpack/CipherpackListener.cxx
index eb4b8d0..2a4c96a 100644
--- a/java/jni/cipherpack/CipherpackListener.cxx
+++ b/java/jni/cipherpack/CipherpackListener.cxx
@@ -150,7 +150,7 @@ class JNICipherpackListener : public cipherpack::CipherpackListener {
return JNI_TRUE == res;
}
- bool contentProcessed(const bool decrypt_mode, const content_type ctype, jau::io::secure_vector<uint8_t>& data, const bool is_final) noexcept override {
+ bool contentProcessed(const bool decrypt_mode, const content_type ctype, cipherpack::secure_vector<uint8_t>& data, const bool is_final) noexcept override {
JNIEnv *env = *jau::jni::jni_env;
jau::jni::JavaAnonRef asl_java = getJavaObject(); // hold until done!
jau::jni::JavaGlobalObj::check(asl_java, E_FILE_LINE);