Hi everyone,
First of allThanks to you for your great tool. My web site is HTTPS up and running Fine.
My system :
- Windows Server 2012 R2
- [INFO] A simple Windows ACMEv2 client (WACS)
- [INFO] Software version 2.0.3.206 (RELEASE)
- [INFO] IIS version 8.5
- [INFO] Please report issues at https://github.com/PKISharp/win-acme
I use WACS which created theses files :
- C:\ProgramData\win-acme\acme-v02.api.letsencrypt.org\Registration_v2
- C:\ProgramData\win-acme\acme-v02.api.letsencrypt.org\Signer_v2
- C:\ProgramData\win-acme\acme-v02.api.letsencrypt.org\MYID.renewal.json
- C:\ProgramData\win-acme\acme-v02.api.letsencrypt.org\Certificates\MYID-cache.pfx
- C:\ProgramData\win-acme\acme-v02.api.letsencrypt.org\Certificates\MYID-csr.pem
Inside MYID.renewal.json :
âIdâ: MYID",
âLastFriendlyNameâ: â[IISSite] Default Web Siteâ,
âPfxPasswordProtectedâ: âenc-***************************************==â,
âTargetPluginOptionsâ:
Settings:
in my SETTINGS.CONFIG in WACS folder, i tried adding my password in the VALUE section of :
<setting name=âDefaultCentralSslPasswordâ serializeAs=âStringâ>
<value>MYPASSWORD</value>
</setting>
<setting name=âDefaultCentralSslPfxPasswordâ serializeAs=âStringâ>
<value>MYPASSWORD</value>
</setting>
My Issue:
My problem is that I need to use the PFXPasswordProtected, but in my application when , I call the PFX file using my password, it displays "The specified network password is not correct. ".
Tools to acess PFX: ASP PAGE :
Commands :
Set oEncrypt = Server.CreateObject(âPersits.CryptoManagerâ)
Set oStore = oEncrypt.OpenStoreFromPFX(âC:\ProgramData\win-acme\acme-v02.api.letsencrypt.org\Certificates\MY-ID.pfxâ, âMYPASSWORDâ)
Error message:
Persits.CryptoManager.1 error â800a0064â
The specified network password is not correct.
Question:
How to generate my own password to be embeded in the PFX file ?
Kind Regards,
Joaquim