Search found 3 matches

by HarryWhitehouse
Mon Jan 24, 2022 6:12 pm
Forum: Other ScottKlement.com Tools
Topic: how to decode base64 encoded zpl data back to ASCII/EBCDIC
Replies: 10
Views: 13683

Re: how to decode base64 encoded zpl data back to ASCII/EBCDIC

Hoping that this helps in some way -- the encoding of the ZPL text was accomplished using this Ruby module: https://ruby-doc.org/stdlib-2.5.3/libdoc/base64/rdoc/Base64.html I'd also point out that a true image file will begin with a few bytes that indicate the MIME type and those bytes will be encod...
by HarryWhitehouse
Wed Jan 19, 2022 7:11 pm
Forum: HTTPAPI
Topic: Cipher Problem with OS V7R1M0
Replies: 2
Views: 3397

Re: Cipher Problem with OS V7R1M0

Problem solved. Adding these two OpenSSL ciphers to the NGINX configuration allowed for a successful connection: AES256-SHA which translates to TLS_RSA_WITH_AES_256_CBC_SHA AES128-SHA which translates to TLS_RSA_WITH_AES_128_CBC_SHA You can also control the elliptic curve cipher used so that secp256...
by HarryWhitehouse
Thu Jan 13, 2022 11:41 pm
Forum: HTTPAPI
Topic: Cipher Problem with OS V7R1M0
Replies: 2
Views: 3397

Cipher Problem with OS V7R1M0

I have an AS400 customer running RPG who has connection issues with our NGINX API server. He has no problems establishing an SSL connection with other servers (e.g. https://secure.shippingapis.com/) and I have examined those sites with the Qualys test site to see what ciphers they expose. When tryin...