diff options
author | Thomas <> | 2021-03-25 13:15:01 +0100 |
---|---|---|
committer | Thomas <> | 2021-03-25 13:15:01 +0100 |
commit | e62a856f255163ecc145c16130d15147152bc0fd (patch) | |
tree | 14adaa3c128b4ba61356a4656ed6e11f5d248b80 /eaaf_modules/eaaf_module_moa-sig/src/test/java | |
parent | c3856db7ba2586edc4cb52bda18c38d8d05ae748 (diff) | |
download | EAAF-Components-e62a856f255163ecc145c16130d15147152bc0fd.tar.gz EAAF-Components-e62a856f255163ecc145c16130d15147152bc0fd.tar.bz2 EAAF-Components-e62a856f255163ecc145c16130d15147152bc0fd.zip |
add additional logging into SL2.0 tasks
Diffstat (limited to 'eaaf_modules/eaaf_module_moa-sig/src/test/java')
-rw-r--r-- | eaaf_modules/eaaf_module_moa-sig/src/test/java/console/PdfSigDecoder.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eaaf_modules/eaaf_module_moa-sig/src/test/java/console/PdfSigDecoder.java b/eaaf_modules/eaaf_module_moa-sig/src/test/java/console/PdfSigDecoder.java index 28338746..b9e9e517 100644 --- a/eaaf_modules/eaaf_module_moa-sig/src/test/java/console/PdfSigDecoder.java +++ b/eaaf_modules/eaaf_module_moa-sig/src/test/java/console/PdfSigDecoder.java @@ -21,7 +21,7 @@ public class PdfSigDecoder { * @throws UnsupportedEncodingException In case of a general error */ public static void main(String[] args) throws CodingException, UnsupportedEncodingException, IOException { - InputStream is = PdfSigDecoder.class.getResourceAsStream("/pdf_cades_3.hex"); + InputStream is = PdfSigDecoder.class.getResourceAsStream("/pdf_cades_4.hex"); String test = new String(StreamUtils.copyToByteArray(is), "UTF-8"); test = test.replaceAll("\\n", ""); final byte[] bytes = new byte[test.length() / 2]; |