certificate

ERROR ITMS-9000 iTunes Connect

拈花ヽ惹草 提交于 2019-12-23 09:00:06
问题 I am trying to upload a phonegap build iOS app to the app store and I keep getting this error ERROR-ITMS-9000:: "Missing Code Signing Entitlements. No entitlements found in the bundle 'com.fitness.challenges' for executable 'Payload/30DayFitness.app/30DayFitness'." at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage) I have set up my development and distribution provisioning profiles and certificates, and uploaded the cerificate.12 and provision profile to build.phonegap.com any help

OpenSSL: Fetching SQL Server public certificate

余生颓废 提交于 2019-12-23 07:39:09
问题 I want to use OpenSSL or any native Linux command to grab the certificate of a SQL Server. I tried the same way as I do with an HTTP server but it doesn't work. openssl s_client -showcerts -connect MY.MSSQL.SERVER:1433 CONNECTED(00000003) write:errno=104 --- no peer certificate available --- No client certificate CA names sent --- SSL handshake has read 0 bytes and written 249 bytes --- New, (NONE), Cipher is (NONE) Secure Renegotiation IS NOT supported Compression: NONE Expansion: NONE ---

SSL signed certificates for internal use

穿精又带淫゛_ 提交于 2019-12-23 07:26:14
问题 I have a distributed application consisting of many components that communicate over TCP (for examle JMS) and HTTP. All components run on internal hardware, with internal IP addresses, and are not accessible to the public. I want to make the communication secure using SSL. Does it make sense to purchase signed certificates from a well-known certificate authority? Or should I just use self-signed certs? My understanding of the advantage of trusted certs is that the authority is an entity that

Does apns needs certificates for each app development?

半城伤御伤魂 提交于 2019-12-23 05:12:35
问题 I have created provisioning profile and app id and certificates & all of the process to enable push notification for one of my app, if I want to enable apns service for my second app shall I use same certificate or shall I create other provisioning profile and appid & certificates. I am using same certificates but I am getting following error. Failed to get token, error: Error Domain=NSCocoaErrorDomain Code=3000 "no valid 'aps-environment' entitlement string found for application" UserInfo

Can't run Xcode project on device due to certificate issues

℡╲_俬逩灬. 提交于 2019-12-23 05:04:43
问题 This is the first question I've ever posted. I am trying to run an Xcode 9.0.1 project on an iPhone 6 Plus and these three errors come up: Code Signing Error: The user name or passphrase you entered is not correct. Code Signing Error: No signing certificate "iOS Development" found: No "iOS Development" signing certificate matching team ID "KP3X78QM3M" with a private key was found. Code Signing Error: Code signing is required for product type 'Application' in SDK 'iOS 11.0' I suspect this is

How do you deploy an ActiveX control for ie from a VS2008 project?

白昼怎懂夜的黑 提交于 2019-12-23 03:44:25
问题 What are the steps to deploying a project created in VS2008 (windows forms and c#) as a ActiveX control hosted in ie? I have a file uploader project that I want to be hosted on a webpage that users can navigate to, click 'trust this active x control' and the application runs on the page in the browser, just like a java application. To be clear, I'm not looking for ClickOnce (that is an installer) and I don't want the user to have to modify their .Net security or add a trusted site (so just

How do you timestamp a sha256 certificate with a sha256 signature to secure Excel VBA Macro code in Excel 2013?

江枫思渺然 提交于 2019-12-23 03:44:06
问题 This quote was taken from an answer to another question about Excel Security settings. The answer proposed using a digital certificate to sign macros to resolve the security issue. Towards the end of the answer, it was noted that: "When you digitally sign macros, it is important to obtain a time stamp. . ." This is tricky in Office 2013, for a variety of reasons. First, there are two different ways to attach a signature to a spreadsheet. They are known as visible and invisible signatures. The

Reading and Verifying Certificates

只谈情不闲聊 提交于 2019-12-23 03:22:32
问题 Hi I have two certificates, i.e mycert.crt and root.crt. and I need to verfiy if my certificate is signed by root certificate. I am using the following code to do so using the following code but I am getting an error Segmentation fault (core dumped) static int verifyCerti (BYTE *cert1, BYTE *cert2, int certlenght1, int certlenght2); int main (int ac, char **av) { FILE *f_in, *f_in2; BYTE *certBuf, *certBuf2; UINT32 certBufLen,certBufLen2; UINT32 certLen,certLen2; int result; ////////////

Modifying security on installed certificates

自闭症网瘾萝莉.ら 提交于 2019-12-23 03:13:02
问题 We are working on creating an installation package for a WCF-based web service. The service uses message-level encryption via an installed certificate. I am trying to come up with an automated way to both install the certificate and set its permissions. Currently, we are manually installing the certificate via the MMC snap-in. After it is installed, we need to find the file containing the installed certificate and modify the permissions so that the Network Service account can access it. The

How to parse security certificate subcomponents?

雨燕双飞 提交于 2019-12-23 02:59:07
问题 I'm reading the subject from a security certificate, which has the following format... CN=x,OU=y,O=z,ST=v,C=COM I want to parse this String and get the CN only. Is there any easy way to do this? 回答1: Is it possible to use simple regular expressions here? Without tried it and out of my mind: Pattern pattern = Pattern.compile("CN=([^\\,])\\,") Matcher matcher = pattern.matcher(text); if ( matcher.find() ) { for (int index=1; index<matcher.groupCount();index++) { String cnValue = matcher.group