certificate-authority

OV certificate: How many downloads you need in order to get rid of the smart screen?

橙三吉。 提交于 2020-12-06 12:20:46
问题 If I sign my application with an OV certificate, how many downloads I need until reputation builds up and the smart screen goes away? Of course there are few possible ramifications here: The OV certificate is brand new The OV certificate expired and the renewed The signed application is a new release (first time ever on Internet) The signed application is an updated (had reputation before). Some people say that 10 downloads are enough, other say that you need tens of thousands of downloads.

Programmatically communicating with a Certificate Authority

泪湿孤枕 提交于 2020-12-04 02:23:10
问题 I working with programmatically working with certificates and communicating with a Certificate Authority. I have been working with the CertClient and CertEnroll COM objects in C# on Windows 2008R2. I can generate a request and get back a cert from the CA. I started with this example: http://blogs.msdn.com/b/alejacma/archive/2008/09/05/how-to-create-a-certificate-request-with-certenroll-and-net-c.aspx I am having two issues that I can not figure out. First is, how can I get access to the

Programmatically communicating with a Certificate Authority

心不动则不痛 提交于 2020-12-04 02:22:19
问题 I working with programmatically working with certificates and communicating with a Certificate Authority. I have been working with the CertClient and CertEnroll COM objects in C# on Windows 2008R2. I can generate a request and get back a cert from the CA. I started with this example: http://blogs.msdn.com/b/alejacma/archive/2008/09/05/how-to-create-a-certificate-request-with-certenroll-and-net-c.aspx I am having two issues that I can not figure out. First is, how can I get access to the

Programmatically communicating with a Certificate Authority

南笙酒味 提交于 2020-12-04 02:21:36
问题 I working with programmatically working with certificates and communicating with a Certificate Authority. I have been working with the CertClient and CertEnroll COM objects in C# on Windows 2008R2. I can generate a request and get back a cert from the CA. I started with this example: http://blogs.msdn.com/b/alejacma/archive/2008/09/05/how-to-create-a-certificate-request-with-certenroll-and-net-c.aspx I am having two issues that I can not figure out. First is, how can I get access to the

Create my own intermediate cetification authority from commonly trusted certificate

守給你的承諾、 提交于 2020-07-22 21:36:08
问题 I have a simple question (maybe stupid) and i didn't find any clear answer to it. If i get a certificate from a trusted signing company (like verisign...) for one of my server (web for instance), i'll have private an public keys. With this certificate can i set up my own intermediate CA and sign cert request and the be trusted by every one (i know that's shouldn't be..)? My real question is : what will prevent me for issuing certificate and how the company can garanty that nobody does ??

Create my own intermediate cetification authority from commonly trusted certificate

若如初见. 提交于 2020-07-22 21:35:20
问题 I have a simple question (maybe stupid) and i didn't find any clear answer to it. If i get a certificate from a trusted signing company (like verisign...) for one of my server (web for instance), i'll have private an public keys. With this certificate can i set up my own intermediate CA and sign cert request and the be trusted by every one (i know that's shouldn't be..)? My real question is : what will prevent me for issuing certificate and how the company can garanty that nobody does ??

ColdFusion CFHTTP I/O Exception: peer not authenticated - even after adding certs to Keystore

淺唱寂寞╮ 提交于 2020-01-20 05:59:24
问题 I'm currently working with a payment processor. I can browse to the payment URL from our server, so it's not a firewall issue, but when I try to use CFHTTP I get a I/O Exception: peer not authenticated. I've downloaded and installed their latest security cert into cacerts keystore and restarted CF and am still getting the same error. Not only have I installed the providers cert, but also the 2 other Verisign certificate authority certs in the certificate chain. The cert is one of the newer

Dynamics CRM Plugin Code signing [closed]

丶灬走出姿态 提交于 2020-01-07 09:18:08
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . My company has created an plugin for Microsoft Dynamics CRM in Visual Studio 2012, we have created a self signed certificate with Visual Studio and the plugin works. We have Certification Authority Server which can issue certificates but the problem is creating an CSR (Certification Signing Request) after much

Which Root CA still issues SHA-1 ssl certificates?

左心房为你撑大大i 提交于 2020-01-07 00:54:07
问题 Is there any CA that still issues SHA-1 certificates? I need it for TR management to manage devices with base firmware that does not support sha256. 回答1: imho, Public CA's will no longer issues SHA-1 certificates; they are bounded by the strict guidance of the Certificate Authority/Browser Forum to no longer issue new server certificates with SHA1 signature algorithm. 7.1.3. Algorithm Object Identifiers Effective 1 January 2016, CAs MUST NOT issue any new Subscriber certificates or

How do I programmatically remove a certificate in Trusted Root Certification Authorities?

纵饮孤独 提交于 2020-01-03 17:13:27
问题 I need to be able to remove a specific certificate from each PC in my organization. Yes, I could go seat-to-seat, but I have until Thursday to pull it off, and I don't have the manpower to go seat-to-seat. Is there a programmatic way of doing this using C#? 回答1: I don't think you need to crank out any C# - take a look at certmgr.exe /del. If you really do want to write some C# today to do this, then take a look at X509Store.Remove. 回答2: There's an example in MSDN (click here) I think the