0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

なんかかくAdvent Calendar 2024

Day 13

証明書のテストをした記録

Posted at

今年を振り返る「なんかかく」アドベントカレンダー 13 日目です。軽めの話題ですが予定通りです。今日はしゃかいじん、真面目な仕事もしていますという話です。チラシの裏です。自分のメモ用の趣が強いですが、未来の私に感謝されるつもりで書いておきます。

証明書のテストをした記録、参考にした資料等々です。

自己証明書

PowerShell で。

Powershell
$cert = New-SelfSignedCertificate -Subject "VM1" -CertStoreLocation "cert:\CurrentUser\My" -KeyExportPolicy ExportableEncrypted
Export-Certificate -Cert $cert -FilePath VM1.cer
Powershell
Import-Certificate -FilePath VM1.cer -CertStoreLocation "cert:\CurrentUser\Root"
Import-Certificate -FilePath VM1.cer -CertStoreLocation "cert:\LocalMachine\Root"

ほか テスト証明書の作成 - Windows drivers | Microsoft Learn

CertUtil

certutil.exe は、証明書サービスの一部としてインストールされるコマンドライン プログラムです。 certutil.exe を使用すると、証明機関 (CA) の構成情報の表示、証明書サービスの構成、および CA コンポーネントのバックアップと復元を行うことができます。 このプログラムにより、証明書、キー ペア、および証明書チェーンの検証を行うこともできます。

静的 Web サイトの準備

Let’s Encrypt

Let's Encrypt の証明書をブラウザ上で簡単取得 (dns-01 / ECDSA もあるよ) #JavaScript - Qiita

ZeroSSL

無料の SSL 証明書が得られる ZeroSSL を使ってみた

余談

チュートリアル - Azure portal を使用して Key Vault に証明書をインポートする | Microsoft Learn
Azure Firewall Premium の機能 | Microsoft Learn : TLS インスペクション
Azure Firewall Premium の証明書 | Microsoft Learn : 証明書

以上です~

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?