Closed littleq0903 closed 9 years ago
Can you explain what these files are and how you renewed their contents?
these files are using for code signing (by GYP) of google-input-tools, original build procedure will fail and assert SignTool Error now (even you've added test.cer into Root Trusted).
more detail about Signtool error: http://stackoverflow.com/questions/22946399/signtool-error-no-certificates-were-found-that-met-all-given-criteria-with-a-wi
I guess you just disable code signing while building, that also works.
and for further making this key, I document the key making procedure here, in case the key become expired again:
makecert -sv test.pvk -n "cn=gittest" test.cer -b 09/20/2015 -e 09/20/2020 -r
pvk2pfx -pvk test.pvk -spc test.cer -pfx test.pfx -po 111111
more detail about generate keys: https://msdn.microsoft.com/en-us/library/ff699202.aspx
Many thanks for the information. LGTM
extended the new key with 5 more yrs. password stay the same.