From 2e3d3e33f3ad87f26247e553f460033358eb2d53 Mon Sep 17 00:00:00 2001 From: phl0 Date: Mon, 13 May 2024 16:38:30 +0200 Subject: [PATCH] OpenSSL signatures need a newline after base64 string --- application/controllers/Lotw.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index a328824a..cb30b8ba 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -967,7 +967,7 @@ class Lotw extends CI_Controller { openssl_free_key($pkeyid); } $signature_b64 = base64_encode($signature); - return $signature_b64; + return $signature_b64."\n"; }