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
0
votes
1 answer

How to check whether the digitally signed document is correct

I am working on creating a PDF file which is digitally certified/signed. I am successfully able to sign my pdf document, using itext library. However, the certificate details on the adobe reader shows me as below: Is the certificate ok? or is there…
Ankit
  • 3,083
  • 7
  • 35
  • 59
0
votes
1 answer

Signed .CAB results in "Unknown publisher" on windows mobile 6.5

I have purchased a certificate from http://www.ksoftware.net/ which I use to sign a .CAB file used for installation of our software on windows mobile 6.5 devices. However, even after signing the .CAB, when attempting to install the application on…
unohoo
  • 378
  • 4
  • 14
0
votes
2 answers

How to populate system certificates under IIS?

I need to populate system certificates. Same source code tells me the certificates count correctly when I debug it under VS. When I run the code under IIS 7.5 Windows 7, .Count always returns 0. Is there any permission problem? Why does the count…
Nime Cloud
  • 6,162
  • 14
  • 43
  • 75
0
votes
2 answers

Is there some way to restrict private key visibility on Android?

I am developing and application that would need to certify data created by end users. I know that I could use KeyChain API for that, but this API has what I believe would be a flaw for our application. Since KeyChain requires user access to…
mrcaramori
  • 2,503
  • 4
  • 29
  • 47
0
votes
1 answer

What is the best way for an user to sign/timestamp data with his private key?

I am still new to security issues so my problem may actually be just a misunderstanding. The system I am working has the requirement that users should sign/timestamp data somewhere in the web application. However, in order to sign with a digital…
0
votes
1 answer

Call to undefined function openssl_pkcs7_sign()

I'm using TCPDF to sign son PFD documents. I was testing the examples via web: http://www.tcpdf.org/examples.php, and they worked fine, but when I downloaded the lib and tested it @ localhost I got this error in "example 52": Fatal error: Call to…
Redder
  • 146
  • 1
  • 5
  • 17
0
votes
1 answer

Digital Certificates in an ASP.NET application

I have a .NET application (C#) and for security reasons, I was asked to request users that they install a certain certificate in their browser and then check if user's browser has the certificate installed in it. How can I create a certain digital…
user2044696
0
votes
2 answers

Sign a VBA macro with a level 2 certificate

I am trying to sign my excel VBA code. As I understand, I can do this with "level 2" or "class 2" I'm trying to find something cheeper than go-daddy, $200 per year seems a bit steep for this service. StartSSL Their website says "object code…
David
  • 263
  • 2
  • 5
  • 15
0
votes
1 answer

Why wont a signed ClickOnce application display the Trusted Publisher?

Attached to this question are some pictures to give you guys an idea of what we are doing. 1 The code is signed with a Verisign Class 3 Code. 2 It's published through Visual Studio to our Web Server. 3 When I click on download it displays the…
0
votes
1 answer

Blocking all http requests if digital certificate is not present

In my app, the user can be authenticated with a login/password stored in a database or using its digital certificate. In both ways, if the login succeeds a cookie is created and associated to the…
0
votes
1 answer

Requesting user´s digital certificate

I have a digital certificate but it´s is an card, so I don´t have access to my private key. I am developing an app that I want the user to have an option to log in using its certificate. I want my application to request user´s certificate. How do I…
0
votes
1 answer

Is it possible to sign EXE (exeutable file) using PositiveSSL Certificate?

Is it possible to sign EXE file using PositiveSSL Certificate. So when trying to open the .exe file, windows will says that the publisher is verified?
Gorden Gram
  • 921
  • 2
  • 10
  • 14
0
votes
3 answers

java keystore file limitations

I created a keystore file for my PFX certificates (PKCS#12), but I need to know how many keys can be stored in a keystore file (JKS). I'm currently loading the certificates as follows: KeyStore oStore =…
atiruz
  • 2,782
  • 27
  • 36
0
votes
2 answers

Public key extraction from a certificate in C#

How to get private key from a x509 v.3 certificate and store it in a RSACryptoServiceProvider class?
0
votes
1 answer

A single digital certificate for a development group?

We have a small development group that has a need to use ClickOnce to deploy some intranet applications. Would it be proper for the group to use a single digital certificate for these deployments, or should each developer have their own…