Questions tagged [digital-certificate]

A certificate which uses a digital signature to bind together a public key with an identity or information.

In cryptography, a public key certificate (or identity certificate) is a certificate which uses a digital signature to bind together a public key with an identity — information such as the name of a person or an organization, their address, and so forth. The certificate can be used to verify that a public key belongs to an individual.

In a typical public key infrastructure (PKI) scheme, the signature will be of a certificate authority (CA). In a web of trust scheme, the signature is of either the user (a self-signed certificate) or other users ("endorsements"). In either case, the signatures on a certificate are attestations by the certificate signer that the identity information and the public key belong together.

484 questions
5
votes
1 answer

How long is a document signed with a Digital Signature Certificate valid after the time it is signed?

My understanding is that the digital certificate is valid up to 3 years depending upon what you paid for to the certificate issuing company. So for example, If I bought a DSC from say, emudhra, and it is valid for 2 years. If I sign a document on …
5
votes
2 answers

Standardized approach to digital signatures of files via .NET

I am building a system for distributing packages (.zip archives) created by different organizations. I'd like a way to verify that the publisher of a package is indeed who they claim to be, and that the file has not been tampered with. To verify…
Paul Stovell
  • 32,377
  • 16
  • 80
  • 108
5
votes
2 answers

How to force ie to ask for digital certificate

Well... I have a web page that requires a digital certificate. When i first Load the page I get a dialogue window asking for the certificate. If I select it then everything work great :) However, if I press cancel and then re-enter the page I am not…
Sergio
  • 8,125
  • 10
  • 46
  • 77
5
votes
3 answers

No 'add certificate' button in apple iOS provisioning portal

I am trying to follow the steps to create a "Distribution provisioning profile". I get here and the instructions tell me to "click the ‘Add Certificate’ button", but there is no button :-( (nice one apple) I can see from the (similar) unanswered…
iPadDeveloper2011
  • 4,560
  • 1
  • 25
  • 36
5
votes
1 answer

Request Client Certificate on JavaScript

The Objective I need to open this JavaScript certificate Modal on Browser to user select their Certificate (It's on Portuguese sorry): Then save it on my Action like this: [HttpGet] public ActionResult GetClientCertificate() { var…
Matheus Cuba
  • 2,068
  • 1
  • 20
  • 31
5
votes
1 answer

Digital signature in PDF

I'm trying to digitally sign a PDF file using THIS project as an example. When it executes st.Close(); I am getting the infamous "Object reference not set to instance of an object". I have no idea of why this is happening, st is an instance of an…
Sergio
  • 8,125
  • 10
  • 46
  • 77
5
votes
1 answer

Is it possible to convert certificates that I get from CA to PEM format?

I bought a certificate from a CA and I don't know much about certificates. I need a PEM format certificate to use in dovecot. It could be a fool question as I don't know much about certificates. I got three files from the CA : .ca-bundle .crt .p7b I…
5
votes
0 answers

Digital signing of PDF

I am currently using WKHTMLTOPDF to generate PDF in my application. Now the requirement is to digitally sign the pdf (not placing of watermark or a sign image), something which can really authenticate that the pdf generate is from the app ONLY. I…
5
votes
1 answer

how to generate digital signature with x509 certificate?

How do we get and append x509data and x509certificate tag to the xml produced by the following code String providerName = System.getProperty("jsr105Provider", "org.jcp.xml.dsig.internal.dom.XMLDSigRI"); XMLSignatureFactory fac = …
5
votes
4 answers

What is the difference between signing Certificate and Encryption Certificate?

What is the difference between between signing certificate and encryption certificate? I see that signing certificate cannot be used for encrypting the data only encryption certificate. What is the technical difference? Does both have public key and…
M Raji
5
votes
1 answer

how to validate a client Certificate using the trusted internediate CA certificate?

I am having client Certificate "A" which is signed by the CA1 certificate. CA1 certificate is signed by the Root certificate. Now I have the CA1 certificate (trusted ) and received Client certificate (non trusted ) . during validation I need to…
4
votes
2 answers

How to create a digital certificate and export to .p12 file in PHP?

How to create a digital certificate and export to .p12 file in PHP? I want the .p12 file to have private key included. And also want to check whether the key pair is already issued (logged in database). I found a function called…
jondinham
  • 8,271
  • 17
  • 80
  • 137
4
votes
1 answer

grant private key access for account NT Authority\Network Service

I have a digital certificate from a third party and when I try to run the following ms-dos command to grant access to the NETWORKSERVICE account I am getting the following error. winhttpcertcfg -g-c LOCAL_MACHINE\MY -s "TransUnion Net Access Client"…
Tony
  • 171
  • 1
  • 7
4
votes
2 answers

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

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…
Jerry
  • 4,507
  • 9
  • 50
  • 79
4
votes
2 answers

Driving a Certificate Authority programatically (C# or C++)

I'm writing a client/server application that requires the server needs to be able to authenticate the client and also requires all comms to be encrypted. The mechanism to provide this needs to be self contained within the server and client…
rb_
  • 613
  • 9
  • 24