2019年5月30日木曜日

久しぶりに公開鍵を作ってみた。

$ openssl genrsa 4096 > private-key.pem
$ openssl rsa -in private-key.pem -pubout -out public-key.pem

$ openssl rsa -in private-key.pem -text -noout
$ openssl rsa -pubin -in public-key.pem -text -noout

0 件のコメント:

コメントを投稿

NEXTJS PWA化

$ cd frontend $ npm install @ducanh2912/next-pwa $ vi next.config.ts<<__EOF__ import withPWAInit from "@ducanh2912/next-pwa"...