certificate

SSL Pinning and certificate expiry

我是研究僧i 提交于 2019-12-18 11:53:05
问题 This question relates to the use of SSL Pinning in a client app against a web api and certificate expiry. Scenario : I own example.com and have a subdomain where an api is hosted, as such: api.example.com I wish to use the api over SSL , so an SSL Certificate is created for the subdomain. After the certificate has been acquired, I have: A Public Certificate A Intermediate Certificate A Private Key It's my understanding that I install these certificates on my webserver. I then wish for my

iOS Enterprise Program vs. iOS Developer Program

社会主义新天地 提交于 2019-12-18 10:26:15
问题 I am facing some issues related with iOS Developer program and iOS Enterprise Program. One of my client ask me to suggest one of them. Please answer my questions related to iOS Enterprise Program- If i purchase an iOS Enterprise account so when it is available for in-house application distribution? How many device i have on which i can install my app? Do i need UDID of all devices? What if i want to add some new devices? If it is same Ad-hoc distribution the what is the expiry date of Ad-hoc

How to programmatically install a certificate using C#

你离开我真会死。 提交于 2019-12-18 10:25:34
问题 my school webpages have selftrusted certificate(you must install it manually) and I wanted create program that will install a certificate.cer (from visual studio resources) to Local user -"Trusted root certificate authority" after i click on a button.Do you know how to code it in Visual C#? 回答1: To add the certificate to the trusted root store for the current user programmatically, use the X509Store and X509Certificate2 classes. For example: string file; // Contains name of certificate file

Getting error: PKIX path building failed: unable to find valid certification path to requested target

空扰寡人 提交于 2019-12-18 09:53:47
问题 I'm trying to send a xml to another system via web service. But while trying to send i'm getting the following error. I've installed the certificate they gave to me. but still its not working. javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target 回答1: There are two possible sources for this error: either the opposite side

Getting error: PKIX path building failed: unable to find valid certification path to requested target

若如初见. 提交于 2019-12-18 09:52:12
问题 I'm trying to send a xml to another system via web service. But while trying to send i'm getting the following error. I've installed the certificate they gave to me. but still its not working. javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target 回答1: There are two possible sources for this error: either the opposite side

J2ME Midlet - Self-signed certificate

北城以北 提交于 2019-12-18 09:31:28
问题 I want to sign my application but I don't want its users to install certificates on their phones before installing my application. Is it possible to sign j2me midlet with self-signed certificate? 回答1: This is possible, for this you need to purchase signing certificate from the verisign. I do have same sign certificate, which costs 20000 Rs ( one time ). 来源: https://stackoverflow.com/questions/8164122/j2me-midlet-self-signed-certificate

XBAP full trust deployment

前提是你 提交于 2019-12-18 09:25:45
问题 I did the following steps to deploy my wpf application that need full trust permission: 1-Creating a certificate using makecert.exe 2-Creating signed application and deployment manifests. 3-Building a website in IIS to host files (include MyApplication.exe.manifest and MyAppicatio.xbap) 4-Adding certificate - used to sign manifests - to IE certificate store (Trustes Root Certification Authorities and Trusted Publishers) , IE Menu bar->Tools Internet Options->Content->Certificates But when i

Redirect to https using .htaccess

柔情痞子 提交于 2019-12-18 08:23:14
问题 I have a problem with .htaccess I have a certificate in my server, and it's only for https://example.com (not https://www.example.com) Therefore, I'm trying to do a .htaccess redirect to the correct url. My intention is this: http://www.example.com --> https://example.com http://example.com --> https://example.com https://www.example.com --> https://example.com I tried different combinations and nothing seems to work. At the moment I have this, but seems like is not working for http://www

java paypal api call certificate is requierd?

筅森魡賤 提交于 2019-12-18 06:52:08
问题 I am using Java & paypal express checkout & DoDirectPayment, i see there are two options either by signature given by paypal sandbox merchant account or signature given by paypal sandbox merchant account. Do i need any certificate if i am using "signature" string ? 回答1: At SandBox, those two Credentials (generated at SandBox primary account and test account) are same. It is for your convenience. Do i need any certificate if i am using "signature" string? No, you do not need certificate if you

SHA256 signing stops working in .NET 4.5

那年仲夏 提交于 2019-12-18 04:33:10
问题 We have a piece of code which creates a SigningCredentials object to use to sign xml document by using SHA256 algorithm. It works with .NET 3.5 perfectly. However, when we upgrade our codebase to .NET 4.5, it stops working. Same code, same certificate! I have spent hours on debugging and searching on the internet without any luck. Could anyone please tell me what the problem here is? Thank you in advance. Code to create SigningCredentials: public SigningCredentials CreateSigningCredentials