This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| openssl pkcs12 -in path.p12 -out newfile.crt.pem -clcerts -nokeys | |
| openssl pkcs12 -in path.p12 -out newfile.key.pem -nocerts -nodes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example; | |
| import java.util.Arrays; | |
| import java.util.Locale; | |
| import java.util.Random; | |
| public class StringHelper { | |
| public static void main(String[] args) { | |
| Random random = new Random(); | |
| for (int i = 0; i < 10; i++) { |