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
| .close-button { | |
| position: absolute; | |
| top: 0; | |
| right: 0; | |
| width: 48px; | |
| height: 48px; | |
| background: #41415B; | |
| border-radius: 48px; | |
| margin-top: -24px; |
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
| # Private key | |
| $ openssl genrsa -passout pass:{STRONG-PASSWORD} -out {PATH}/private.pem -aes256 4096 | |
| # Pulbic key from the | |
| $ openssl rsa -passin pass:{STRONG-PASSWORD} -pubout -in {PATH}/private.pem -out {PATH}/public.pem |
OlderNewer