Create JKS file from Base64 encoded string
Asked Answered
A

1

5

I have a Base64 encoded String that I need to transform into a JKS file. The string is simply the encoded contents of the JKS file I need to recreate on my machine. Is this something that's possible? Searching high and low, I have found no information on how to do this, any links or documentation would be very helpful

Ansilma answered 20/11, 2019 at 18:53 Comment(0)
S
8

In UNIX you can decode a base64 encoded string to a file using:

cat file_containing_base64 | base64 --decode > output.jks

or

echo base64_string | base64 --decode > output.jks

Sadyesaechao answered 18/8, 2020 at 11:29 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.