Questions tagged [x509certificate]

X509Certificate is the name of .NET and Java classes for handling X.509 certificates.

X509Certificate is a class for handling X.509 certificates in .NET (MSDN Entry) and in Java (Javadoc).

3174 questions
1
vote
1 answer

How to prevent popups when loading a keystore

Hi as corollary to this question I wanted to ask if you know how to prevent the poping of dialogue either to ask for password or to ask to insert a certificate. We are currently building a system where we have to use the windows keystore to get…
Newtopian
  • 7,543
  • 4
  • 48
  • 71
1
vote
0 answers

certutil.exe returns "The specified network password is not correct"

I am creating CA Root Certificate and then Self-Signed Machine Certificate using Bouncy Castle library as follows. I list below the entire implementation. I am able to create password-protected .PFX file. Despite that I create CA Root Certificate…
Leon
  • 165
  • 12
1
vote
1 answer

CRL check in Java

I have set CertStore configured with locally stored CRLs. I want to carry out certificate validation using these locally stored CRLs only. In case if incoming connection's certificate does not match against any of these CRLs, it should not try to…
supraja
  • 93
  • 2
  • 11
1
vote
1 answer

Issue with Generating self-signed Certificate(X509), Private and Public key in Java Programatically

I am facing issues when i tried generating the certificate using BouncyCastle or Sun.Security.* Requirements- Android API support - For API 15 and API 8 I tried following ways to do it.. 1) I tried using BouncyCastle jar with the following code …
1
vote
1 answer

JCE: Exception while verifying X509 self-signed certificate

We develop a custom JCE security provider for SSL/TLS. One of our users is getting a server certificate verification failure on the client side. It's the usual "unable to find valid certification path to requested target" error. (Yes, the cert is in…
1
vote
1 answer

table view does not display datas javafx

i'm working on a project application that should display X509certificates details in a TableView. The certificates files are DER encoded and are loaded from a specific folder of the client computer. When he clicks on the HDD icon in the app window,…
user8313128
1
vote
1 answer

X509Certificate2.Export fails with "Keyset does not exist" in console application

I do not have deep knowledge of how storing and working with certificates from within code should be done "properly", so will use rather "simple language" to explain my problem. I have certificate, which was generated by code (using Bouncy Castle),…
mimo
  • 6,221
  • 7
  • 42
  • 50
1
vote
0 answers

How to verify XAdES signature using ExtendedSignedXml class?

I am trying a verify a XAdES signature that I have created using XadesNetLib from codeplex. I have implemented detached signature and hence the signature refers to an XML file defined in the URI attribute of Reference tag. Though, both the signature…
1
vote
2 answers

Duplicated X509Certificate

I am trying to sign an XML file and for some reason its adding two tags under tag. Values in tags are not identical. (see example below) KJASHDJASHAHDJA
Tagyoureit
  • 359
  • 1
  • 5
  • 18
1
vote
1 answer

Add TimeStamp to digital signature

I have a code to sign a string with A1 certificate successfull usin C#. I need to add a TimeStamp to this signature. This TimeStamp need went from a TimeStamp server like http://www.cryptopro.ru/tsp/tsp.srf I can't figure out how to put the…
1
vote
1 answer

ASP.NET Core Web API calling other Web API using Client Certificate getting 401

I have been trying to add a client certificate to the HttpClient in a .NET Core 1.1 WebAPI for the past 20 minutes and can not figure out what the issue is. When I debug the program and check to see if the certificate was attached with the handler,…
1
vote
2 answers

Get all certificates installed on Local machine

I have the following code to get the certificates: X509Store store = new X509Store("??","??"); List lst = new List(); store.Open(OpenFlags.ReadOnly); foreach (X509Certificate2…
LogicalDesk
  • 1,237
  • 4
  • 16
  • 46
1
vote
1 answer

Where Key pair is generated (At Registration Authority Side or Certificate Authority Side )if i want Certificate with PKCS 12 certificate format

I have developed a USB Based Hardware Token which will perform the cryptographic operations like Key pair generation,Digital Signature Creation,Signature Verification,etc.. I'm having the following questions in my mind kindly provide the…
Thirumal
  • 41
  • 3
1
vote
1 answer

Creating self-signed PowerShell scripts start to finish

While investigating this problem myself, I was unable to find any start-to finish solutions on self-signing PowerShell scripts. So, how do you handle it all self-contained within PowerShell itself to utilize the AllSigned Execution Policy and help…
1
vote
1 answer

Loosing x 509 certificate info after encrypting XML, redundant namespaces

I'm using Java Security and Javax XML Crypto for X509 certificate signing. It's working pretty well and after using XMLSignature sign XMLSignature signature = xmlsignaturefactory.newXMLSignature(signedinfo,…
user1974566
  • 210
  • 2
  • 14
1 2 3
99
100