6 lines
108 B
Bash
Executable File
6 lines
108 B
Bash
Executable File
#!/bin/sh
|
|
|
|
openssl genrsa -des3 -out ca.key 4096
|
|
openssl req -new -x509 -days 3650 -key ca.key -out ca.crt
|
|
|