The certificate-revocation tag has no wiki summary.
1
vote
0answers
19 views
Offline revocation mode
My question is similar to this question.
I am trying to check revocation list only using the local CRL.
I am using X509Chain.Build() with the following parameters:
var chainMachine = new ...
0
votes
0answers
12 views
How to check for revocation list only from the CRL?
I am using WinVerifyTrust to verify a file signature.
the connection to the internet is very bad so I want to check only the local cache.
The problem is that I am confused about how should I set the ...
0
votes
0answers
21 views
winVerifyTrust is crushed when the sys time is not accurate
I am developing a C# .net 3.5 application.
I am trying to verify a file signature by using WinVerifyTrust.
I also want a revocation check so I set the following parametrs of the WinTrustData.
...
1
vote
0answers
99 views
Invalid DER-encoded CRL data java
I am trying to check if x509 certificate is revoked or not:
CertificateFactory cf = CertificateFactory.getInstance("X.509");
X509CRL crl = (X509CRL) cf.generateCRL(crlFile);
if ...
0
votes
0answers
133 views
What next step for revoke certificate?
help, please.
I am try this link
http://msdn.microsoft.com/ru-ru/library/windows/desktop/aa383251(v=vs.85).aspx
and a got exception on this code
using (var hProv = ...
2
votes
1answer
123 views
Any Issue With Revoking Certificate Regularly
Is there any issue, if I revoke my development certificate regularly (10 times / month) ?
Let consider I'm developing 3 application using different systems with 1 development certificate and 3 ...
0
votes
0answers
315 views
Preventing .NET from checking code signing certificate's revocation status for certain assemblies
I'm looking for a way to instruct the .NET runtime, that it shall not check online the revocation status of a code signing certificate with the respective certification authority for certain ...
2
votes
1answer
4k views
Howto create a certificate using openssl including a CRL distribution point?
I'm having problems using openssl to create a x509 certificate containing a crl distribution point for testing.
I've checked the documentation and found the configuration setting ...
1
vote
1answer
514 views
OCSP Revocation Check On Entire Certificate Chain
When you request for an OCSP server to check the revocation status of a cert, does it automatically check the revocation status of the entire chain?
i.e: if it says the cert is "good", then does that ...
0
votes
1answer
273 views
ADCS Online Responder (OCSP) doesn't real-time
I installed the AD, AD CS and OCSP on the same machine in my lab and configured. I then use C# to have a OCSP client so that it can send the revocation check request and parse the response for a ...
1
vote
1answer
633 views
X509Certificate2.Verify() method, validating against revocation list and performance implications of it
I want to validate the X509 certificate. And I thought to go for X509Certificate2.Verify() method.
However, the documentation does not tell anything about what all things it verifies.
Please ...
3
votes
2answers
3k views
How to revoke an openssl certificate when you don't have the certificate
I made an openssl certificate signed by the CA created on the local machine.
This certificate was deleted and I don't have it anymore.
It is impossible to create another certificate with the same ...
0
votes
1answer
876 views
Finding out which CA Certiciate validated a CRL file authenticity
Given a certain CRL, for example:
http://crl.verisign.com/pca1.crl
Downloading it, and asking openssl to verify it and show its contents works like a charm:
wget http://crl.verisign.com/pca1.crl
...
1
vote
2answers
179 views
submitting ios app using the private key of a revoked distribution certificate
I have a distribution certificate that is still valid on my mac.
the team agent revoked it in the ios portal by mistake.
Am I still able to use the old certificate to submit apps to the app store? ...
0
votes
0answers
1k views
X509 CRL check in offline root ca environment using Windows Identity Foundation
I have a web application which is using the default certificateValidation settings for token handling within Windows Identity Foundation, i.e. certificateValidationMode="PeerOrChainTrust" and ...
2
votes
1answer
1k views
CRL and OCSP behavior of iOS / Security.Framework?
I'm trying to figure out what iOS' policy is when verifying certificates using Security.Framework regarding revocation of certificates.
I cannot find information about this in the docs for iOS.
In the ...
0
votes
0answers
645 views
Certificate Revocation List not found by Windows
I made my own CA for Authenticode to be used by third party developers for an application I'm writing. I want to make sure that I can revoke certificates, and am testing the CRL behavior of my CA and ...
0
votes
2answers
336 views
Disable CRL check for VB6 applications
One of our customers has an issue with our applications - they take about 2 minutes to start. I ran Process Monitor along with one of the simplest applications and found out the process is trying to ...
16
votes
1answer
5k views
iPhone App Store 'Prepare for Upload' forever
I added two applications to my iTunes Connect account 10 days ago or so. One was a 'light' version, the other I'll charge for. The full version is already on the app store, but the status of the free ...
0
votes
1answer
259 views
Azure certificates and certificate revocation lists (CRL)
All,
Does anyone have a best a view on best practice for CRL usage on Azure?
Background: Azure hosted service that uses Client certificates for authentication. We have a CA (that we own, manage and ...
0
votes
0answers
768 views
Iphone Push Notification: Certicate revoked
I've an Iphone application made with Titanium, I've enabled notifications. In order
to send the notifications (sandbox) I'm using
https://github.com/simonwhitaker/PyAPNs, everything was working ...
1
vote
2answers
959 views
Is there a (simple) way to parse CRL in Python?
I'm trying to do something stupid: load a CRL and output the list of revoked certificates serials.
With M2Crypto loading the CRL is done with:
import M2Crypto
crl = M2crypto.X509.load_crl('my.crl')
...
0
votes
1answer
2k views
Programmatically installing certificate revocation list C#
I am using C#/WCF. I have a web service which shall be invoked by the client.
This is the service definition:
And this is the binding
...
6
votes
2answers
5k views
How to turn off certificate revocation for a WCF service's client?
How can I turn off certificate revocation for a WCF service's client?
The client proxy was generated by wsdl.exe and inherits SoapHttpClientProtocol.