Public Key Infrastructure

learn more… | top users | synonyms

0
votes
0answers
7 views

user ssl cert and 3rd party ssl validation?

I have a need to place a https link on a http site. The link will use someones ssl -cert to verify if someone can access the data on the link. The ssl - cert will be verified by a 3rd party ...
0
votes
0answers
22 views

How to configure JNDI Realm with Tomcat 7 for PKI User Certificate Authentication?

List, I have actually searched extensively on this topic and either a) I don't know how to configure something and/or b) I don't quite understand what a JNDI Realm actually is supposed to do. I am ...
0
votes
0answers
16 views

javascript/jquery and loading user's pki

I have a website that is http except for one link which is https. I want to be able to build an application that once the https link is clicked, it will capture a users client-side certificate, send ...
-1
votes
0answers
52 views

Implementing a .NET application communicating with a bank's PKI service [closed]

I need to develop a .NET application communicating with a bank's PKI service. The PKI service enables bank customers to get and manage certificates for use in secure communications with the bank. ...
0
votes
2answers
28 views

nginx proxy doesn't cache OSCP responses

I want to use nginx as a caching proxy in front of an OCSP responder. 'An OCSP request using the POST method is constructed as follows: The Content-Type header has the value "application/ocsp-request" ...
0
votes
0answers
31 views

How to make GET OCSP requests instead of POST in java?

I have an OCSP server which is configured with cached responses. If I understand correctly, according to the OCSP RFCs (http://www.ietf.org/rfc/rfc2560.txt, http://www.ietf.org/rfc/rfc5019.txt) one ...
0
votes
1answer
44 views

how to build device authentication and key distribution between raspberry pi and server

I have several raspberry pi devices, and I want to link them to one web application securely with ssl in public key infrastructure. and the raspberry pi should keep a credential key inside its memory ...
0
votes
3answers
47 views

Alternative to PKI digital signature

I'm looking for a way of transforming an xml document in a way that achieves the following goals: It can be distributed to known applications across the internet and managed by them without any ...
2
votes
1answer
118 views

Asymmetric Encryption and Decryption

Let us say that I use the algorithm on this site to encrypt and decrypt data with public-private keys: Public Key RSA Encryption in C# .NET on CodeProject Now, let us say that someone encrypts his ...
0
votes
1answer
29 views

how to load additional untrusted cert into the SSL_CTX

I have SSL client and server, and a testing PKI like this root_ca -> server_singing_ca -> ssl server |--> client_signing_ca -> ssl client in the server, I put the server ...
0
votes
2answers
68 views

Certificate path discovery in Java

I try to make an https connection via java build-in functionality for that (HttpURLConnection). But I get this exception: javax.net.ssl.SSLHandshakeException: ...
0
votes
0answers
33 views

Example of a CRLDP and OCSP implementation on JBOSS

Background: I have found that JBOSS does support Certificate Revocation Lists (CRL). Although there is no mention of supporting Certificate Revocation List Distribution Points (CRLDP) or Online ...
0
votes
2answers
42 views

Create my own intermediate cetification authority from commonly trusted certificate

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 ...
1
vote
0answers
44 views

generating RSA keys through the browser

HTML5 has the element that sends an SPKAC to the server (as I understand it). But how do you do it in IE? One CA's websites gives me the following prompt: This Web site is attempting to perform a ...
0
votes
0answers
35 views

OpenCA installed - How to automate it?

i installed RA and CA at my virtual machine and i can request certificates through /pub , approve them through /ra , issue them through /ca and finally download them through /pub ! What i want now is ...
1
vote
1answer
90 views

how to check for existing cert with same common name - openssl

I’m trying to understand some code someone wrote as a wrapper for the openssl library / tool, with a view to updating it. I'm completely new to openssl and PKI in general. I found the following docs ...
0
votes
0answers
129 views

How to retrieve user's Private Key from Active Directory with C# (=How to get a PKCS12 (PFX) certificate from Active Directory?)

We are implementing a digital signature ad-hoc scheme using Active Directy and C#. We would like to know how should we proceed to RETRIEVE the Private Key (or the user's PFX file) from the user's ...
0
votes
1answer
203 views

Java self signed certificate and keystore usage

I need to create public and private key along public certificate. I am able to generate the self sign certificate using the following code ... KeyPairGenerator keyPairGenerator = ...
0
votes
1answer
110 views

SecTrustSetAnchorCertificates with client certificate

I am developing iOS Application. We have custom certificate authority with self-signed ca-cert. Certification authority issues certificates both for users and for https server too. I would like to ...
0
votes
0answers
64 views

SecTrustSetAnchorCertificates brokes credentialForTrust

I want to connect to HTTPS server which uses certificate signed by custom CA. I would like to have certification's authority CA certificate hardwired in my IOS application. I tried this code: - ...
1
vote
0answers
159 views

How to obtain a user's identity from a smartcard on Windows (MSCAPI) with Java?

I'd like to obtain the user's identity from a smartcard (PKI) from a Java fat client on Windows with Sun's MSCAPIProvider. The target is: user opens the app prompted for card prompted for PIN I get ...
0
votes
1answer
80 views

EJBCA API example

I completely got lost. I have installed EJBCA on CentOS and the next task I have is to retrieve a certificates from the server using C# gui client (that will be installed on common PC). ...
4
votes
2answers
328 views

How to get Information from a security token with C#

I need to enable my applications' users to sign their approvals with their personal USB security token. I've managed to sign data but I haven't been able to get the information of who's token has ...
0
votes
0answers
112 views

client certificate authentication iis7

I am using windows server 2008 with IIS 7. I am a certificate authority on the server, with self signed certificate. On my client machine I generate a request, approve it on the server, complete it ...
0
votes
2answers
66 views

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

Creating public key certificates with a pre-existing public key value

I was just wondering how it would be possible to create a public key certificate using php with only a pre-computed public key value. I will just sign this certificate using my own ca cert once I ...
1
vote
2answers
31 views

How to get the user info by the public key the user sent over ssh?

Like what GitHub did. When a user connect over SSH/PKI, how did the server side detect which user it is? ssh -T git@github.com Hi guangnan! You've successfully authenticated, but GitHub does not ...
0
votes
0answers
87 views

Could not find class error on android with spongycastle library

I recently build jars from spongy castle library. and I added Jars "PackageExplorer -> click build path -> add libraries" on eclipse However, it shows error as follows ...
1
vote
1answer
94 views

Intercepting and forwarding client certificate to webservice

I have a web application (gwt) that is running on a tomcat application server. This web application consumes several web services (login, application data transfer, queries, etc.). The web service ...
0
votes
0answers
54 views

Could not find class error on android with eclipse

I would like to generate certificate request on android using bouncycastle library however, eclipse send follwing messages even though I currectly made build paths (make same configurations with ...
2
votes
0answers
141 views

PKI Protected Web Service. Getting HTTP 413: Request entity too large

I have been trying to implement a secure way to authenticate web servers which are calling a .Net SOAP based web service via security certificates. I have setup a certificate authority on the ...
0
votes
0answers
124 views

CAPICOM Alternative in ASP.NET

Is there any open source or freeware alternative to CAPICOM ActiveX? As noted at MSDN: None of the alternatives to CAPICOM offer a solution for scripts; therefore, you must write your own ActiveX ...
0
votes
0answers
343 views

PKCS10CertificationRequestBuilder generates invalid PKCS10CertificationRequest in org.bouncycastle.pkcs

I am trying to use Spongy Castle (v1.47) to create a PKCS10 Certification Request. Spongy Castle behaves exactly the same way as Bouncy Castle, but is more suited to port on Android. The old ...
1
vote
2answers
43 views

Dispute over the efficacy of using public CA certs to secure SAML assertions

Here's the question: Is there any benefit to securing a SAML assertion with a CA cert? I understand how using a CA cert is of benefit when establishing the SSL connection over which the SAML ...
0
votes
1answer
216 views

Decryption result using RSA differs in plain Java and Android

I encrypt/decrypt a message like the following: Encrypt string -> base64 encode bytes -> serialize string -> deserialize string -> decode b64 -> decrypt bytes. The encryption looks like this: ...
1
vote
1answer
578 views

Unable to load PKCS11 driver using IAIK PKCS11 Wrapper

I'm using the following: Windows 7 64bit JDK 7 64bit JRE 7 64bit The new funny JRE 7 64bit doesn't support Sun PKCS11 anymore (which is inside package 'sun.security.pkcs11'). And the big problem ...
-2
votes
2answers
61 views

confusion in public and private key [closed]

in Encryption and decryption same key is use to to convert plan text to cipher and cipher to plan text. so why in public key cryptograpy method sender Encrypt using receiver public key and receiver ...
0
votes
1answer
74 views

PKI standards for java applets

I am working on developing an java applet to access client's private and public key from his digital certificate. Currently i am able to access both the private and public key's from the digital ...
1
vote
1answer
125 views

Digital signature failing when certificate expired

I have recently encountered something pretty much confusing to me. I don't know if this is a "problem" of Outlook, or it's by design and, in that case, my understanding of digital certificates is ...
1
vote
1answer
138 views

getting started with Openssl for certficates

I am creating a simulation for Public key infrastructure in .NET. I searched over google and found openssl for issuing certificated and revoking stuff etc. I dont want to issue certificates for ...
5
votes
1answer
266 views

Mac OS X Code Signing and Executable Validation

I work on a vertical-market Mac application that uses a USB dongle to make sure users have paid for it. It's expensive enough, and in enough demand, that "black hats" have tried to crack the dongle ...
0
votes
1answer
156 views

Some certificates private keys in Windows-MY not detected

Using Windows 7, JDK 6 (and 7). I'm trying to get personal certificates stored in Windows MSCAPI key store and it's basic properties (in order to use private key for signing). However some aliases ...
1
vote
0answers
20 views

Should the OAuth 1.0 request secret be hidden from the user? [duplicate]

Possible Duplicate: Why does OAuth provide both an access token and an access token secret? Why not just a single value? I am confused as to why the OAuth 1.0 request token is split into a ...
1
vote
2answers
425 views

Convert DER encoded certificate to ssh-rsa public key

I am working on a project to automate extracting a public key DER encoded certificate from a users smart card, and convert it to ssh-rsa public key form. The ssh-rsa public key would then be published ...
1
vote
1answer
207 views

Encrypt the encrypted message by using RSA in java [closed]

I have encrypted a String using AES. I have given a key for AES to do so. Now , i am trying to encrypt that given key with RSA(Till here everything went well), Now i need to encrypt this encrypted key ...
1
vote
1answer
292 views

how to use Microsoft Crypto API with USB Dongle following PKCS#11

I have safenet authentication usb token which was given by a company and they told me they have digital public key certificate inside. They gave me a password and a software by which i can see that it ...
3
votes
1answer
335 views

X509 certificate CSR DN parsing

I'm having a problem with X.509 certificate DN parsing. The CSR generated is of the form: /C=/ST=/L=/O=/OU=/CN= The signed certificate issued by the CA is of the form: C=USA, ST=NJ, L=test, ...
0
votes
0answers
260 views

PKI encryption and decryption in java using certificate file [closed]

i am new to asymmetric cipher and trying to run a test program. I created a self signed certificate file and private key file using the below openssl command. The intention is to publish the ...
0
votes
0answers
82 views

PKI baked into Java EE application [closed]

This community has been extremely helpful in education of various nuances with PKI. I do have a question of baking PKI support within applications. How do I bake PKI support within a JAVA ...
3
votes
0answers
161 views

Certificate not bound to the private key using keygen

We are using html5 tag to generate keypair in google chrome. We get the P10 which we pass to the CA and get the signed cert back . Then we import the certificate to the CAPI store . After importing ...

1 2 3 4 5