code-signing-certificate

Unable to fix signing identity issue on Xcode

删除回忆录丶 提交于 2019-12-20 08:19:30
问题 I am not new to this but I am unable to fix my signing identity from Xcode Version 6.2 (6C86e). When I click fix issue on the following message: I get a pop up window saying: "The selected team's agent, 'Name Surname' must agree to the latest ios Program License Agreement. Please visit the Member Center. https://developer.apple.com/membercenter" I went on "https://developer.apple.com" and accepted the latest iOS Program agreement. This is what I can see on my legal agreements section: However

EV Code Signing certificate or Code Signing Certificates for Microsoft Authenticode

雨燕双飞 提交于 2019-12-18 18:42:35
问题 I developed a free personal finance application. It is a hobby for me. I have it on my website for download. http://moneyble.com/download/ I frequently (once a month or so) release a new version. So the file's hash changes. When the file is downloaded from my website the browser displays a warning that the file is not commonly downloaded and can be dangerous. Also on Windows 8 machines SmartScreen warning pops up. Both these warnings are killing any new users who try to download my software.

How does one correctly dual-sign code with a timestamp?

夙愿已清 提交于 2019-12-18 13:08:43
问题 I have two code signing certificates (one SHA-1, one SHA-256) which I'd like to apply to the same file. I tried to append the SHA-256 certificate, but this fails: :: Signs with the SHA-1 certificate signtool sign /sha1 8f52fa9db30525dfabb35b08bd1966693a30eccf /t http://timestamp.verisign.com/scripts/timestamp.dll my_app_here.exe :: Signs with the SHA-2 certificate signtool sign /sha1 8b0026ecbe5bf245993b26e164f02e1313579e47 /as /t http://timestamp.verisign.com/scripts/timestamp.dll my_app

creating a key and signing executable with signtool

懵懂的女人 提交于 2019-12-18 05:11:06
问题 How would I sign a Visual C# executable? SignTool.exe can't find a certificate. How would I create a self signed key and certificate, and have signtool be able to see the certificate and use it? OpenSSL and Visual Studio 2010 Express are installed. Running Windows 7 Ultimate x64. Using SignTool.exe from Windows Driver Kit. 回答1: Using self-signed certificates for digitally signing your binaries pretty much goes against the concept of using digital certificates with programs. The basic idea is

creating a key and signing executable with signtool

我的未来我决定 提交于 2019-12-18 05:11:02
问题 How would I sign a Visual C# executable? SignTool.exe can't find a certificate. How would I create a self signed key and certificate, and have signtool be able to see the certificate and use it? OpenSSL and Visual Studio 2010 Express are installed. Running Windows 7 Ultimate x64. Using SignTool.exe from Windows Driver Kit. 回答1: Using self-signed certificates for digitally signing your binaries pretty much goes against the concept of using digital certificates with programs. The basic idea is

Cannot install company app on windows phone 8

妖精的绣舞 提交于 2019-12-17 17:57:09
问题 We are developing a company app for windows phone 8. I have followed every step described in Company app distribution for Windows Phone Here is what I did: Registered company account Bought an enterprise certificate from Symantec. Exported PFX file with private key Generated Enrollment Token (AETX file) from PFX. Developed application, built with visual studio and get xap file generated. (Name it App.xap) Precompiled managed assemblies and Signed it with certificate using BuildMDILXap.ps1

Codesign returned errSecInternalComponent in High Sierra

与世无争的帅哥 提交于 2019-12-17 16:57:18
问题 I tried to codesign using: /usr/bin/codesign -f -s $IDENTITY --keychain $KEYCHAIN --entitlements $ENTITLEMENTS Payload/Test.app But I get an errSecInternalComponent error. 回答1: I too got the same error from code signing. It seems to be mostly bcoz of keychain access. It is not just enough that keychain has to be in unlocked state as suggested in most of the post. I did the following steps to resolve this. Let the Login (or wherever your code signing identity is present) Keychain be in Locked

signtool fail with Inno Setup with exit code 0x1

爱⌒轻易说出口 提交于 2019-12-17 16:47:34
问题 Suddenly my Inno Setup compiler stopped working. Since the last time I used it, I just installed a new certificate issued still to the same company. I've configured the sign tool in this way (NAME is the beginning of the string for the Subject in the certificate): mysigntool="C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin\signtool.exe" sign /v /a /s my /n NAME /t http://timestamp.verisign.com/scripts/timestamp.dll And then in the Inno Setup .iss file I have: SignTool=mysigntool

How to create PFX with my chain of certificates?

允我心安 提交于 2019-12-17 16:28:32
问题 i'm applying a digital signature to my executable. Using signtool on Windows XP or Windows Vista: >signtool.exe sign /f "avatar.pfx" MyApp.exe automatically included the entire certification chain in the digital signature. Starting with Windows 7 the entire certification chain is no longer included. You must manually include the certificate that: signed your key signed the certificate that signed your key ... ...until there are no more certificates to include i am told that i have to do this

Codesign returned unknown error -1=ffffffffffffffff

不羁的心 提交于 2019-12-17 10:40:16
问题 I tried to code sign an iOS application, These are the steps that i followed security create-keychain -p password ${KEYCHAIN} security set-keychain-settings -u -t 300 ${KEYCHAIN} security list-keychains -d user -s login.keychain ${KEYCHAIN} security import "$1" -k ${KEYCHAIN} -A -P "${PASSPHRASE}" -A >/dev/null security unlock-keychain -p password ${KEYCHAIN} /usr/bin/codesign -f -s $IDENTITY --keychain $KEYCHAIN --entitlements $ENTITLEMENTS Payload/Test.app This returned me Codesign returned