lotem / rime-gits

Rime with Google Input Tools (not actively developed)
79 stars 13 forks source link

added new test key, old one is expired #4

Closed littleq0903 closed 9 years ago

littleq0903 commented 9 years ago

extended the new key with 5 more yrs. password stay the same.

lotem commented 9 years ago

Can you explain what these files are and how you renewed their contents?

littleq0903 commented 9 years ago

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

lotem commented 9 years ago

Many thanks for the information. LGTM