LoginSignup
1
2

More than 5 years have passed since last update.

Windows10 オレオレ証明書の発行

Last updated at Posted at 2018-07-11

ClickOnceのFTP発行時に躓いたので自分用のまとめ

1.自己認証ファイルの作成

makecert -n "CN=[1]" -b 01/01/2000 -e 01/01/2100 -r -sv [2].pvk [3].cer

1.アプリケーションの名前とか
2.pvkファイルの名称
3.cerファイルの名称
[-b]・・・有効期限の開始日
[-e]・・・有効期限の終了日

2.ソフトウェア発行元証明形式への変換

cert2spc [1].cer [2].spc

1.pvkファイルの名称
2.spcファイルの名称

3.証明書と鍵情報の格納

pvk2pfx -pvk [1].pvk -spc [2].spc -po [3] -pfx [4].pfx -f

1.pvkファイルの名称
2.spcファイルの名称
3.パスワードの指定
4.pfxファイルの名称

1
2
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
1
2