certificate

Import public key from trusted root CA to PKCS12 key store

The title says it all. It this possible at all or am I getting the idea of this hole thing wrong? ...

c# verify certificate in CRL list

How can I programmatically check if a certain certificate is revoked from its CA CRL list? I'm doing this: X509Chain ch = new X509Chain(); ch.ChainPolicy.RevocationMode = X509RevocationMode.Online; ch.ChainPolicy.RevocationFlag = X509RevocationFlag.EntireChain; ch.ChainPolicy.UrlRetrievalTimeout = new TimeSpan(1000); ch.ChainPolicy.Ver...

Separating encrypt and decrypt privilidges in SQL Server

Hi there, I am trying to save sensitive information on DB with encryption and all users can put their information in DB after encrypting it, but only privilidged users can decrypt and see it. How can i achieve it using SQL Server 2008 key/certificate/encryption mechanism? Thanks, Ebe. ...

Certificate Authority vs Stored public key

Hello, I'm developing a J2ME app which securely connects to a server to login. I'm having a lot of difficulty in setting up the SSL between the two so I thought of a simpler solution and I'm hoping you can give your views on it. The J2ME Midlet is shipped WITH the server's public key, on connect a message (username, password hash and r...

Not Jailbroken - getting Provisioning is not applicable for product type 'Application' in SDK Device

Codesign warning: provisioning is not applicable for product type 'Application' in SDK Device - iPhone OS3.1'; ignoring.. Redownloaded my developer certificate, made a new provisioning profile, still getting this error. Searched the Xcode project and removed all lines referencing a Provisioning Profile, but that didn't seem to remove i...

How to test the code signing of a JAR file on a client machine?

We have signed a JAR file using a certificate generated by MS Active Directory Certificate Services. However, when accessing it via Java Web Start we are getting the prompt that the digital signature cannot be verified even though we've installed the root CA into the certificate store on the client machine. Now trying to look at the ro...

Can SQL Server EKM be used with MS Certificate Service?

Hi there, I am trying to implement EKM and feel current 3rd party products are a bit pricy. Can i simply use MS Certificate Service for EKM? Thanks, Ebe. ...

weblogic cert validation

How do I validate whether a Weblogic certificate is valid or not? ...

Why should I authenticate a client using a certificate?

I'm implementing a client with python's twisted that checks the server ssl certificate when connecting, following basically this recipe. I've seen in many HOWTOs such as this one the server checking the client's authenticity through a ssl certificate as well. Currently i authenticate my clients using an unique id and 1024 char string (th...

Codesign prompt doesn't pop up...

Hi, here's my issue: i've prepared everything as the tutorial said on Apple developer site. I got two certificates for my app, one of is for developmnet (testing on my iphone) and second for distribution. While first one works excellent, i cannot get the second one to work, here's the problem: - i obtained certificate for distribution, ...

JBoss training and certification from Red Hat?

Has anyone taken JBoss Application Administration course or any other courses from Red Hat? How much the emphasis is on Enterprise version over Community edition? How about JBoss Certified Applications Administrator (JBCAA) test? Easy to pass without course? ...

How to renew an iPhone development certificate?

My development certificate has expired. What is the correct method of renewing it? Do you revoke the expired certificate & submit a new Certificate Signing Request? Do provisioning profiles have to be recreated? Are there any side-effects of doing this? ...

How to sign CAB file using signtool.exe?

I have 3 files mycert.cer mycert.pvk mycert.spc Could someone please explain me - what this files should I use for? I need to sign Test.cab file using signtool.exe from command line. But I do not understand - how to do it. Manual http://msdn.microsoft.com/en-us/library/8s9b9yaz(VS.80).aspx is not very good :( Thank you in adva...

Excel 2007 VBA signed certificate

Is it possible to create a certificate for an Excel workbook which has some VBA macros, and distribute the certificates to a small group of users? ...

How to connect to a LDAP server using a p12 certificate

I want to connect to a LDAP server using a .p12 certificate instead of using a username and password. The Java solution for this looks like String ldapURL = "ldaps://"+host+":"+port; System.setProperty("javax.net.ssl.keyStoreType", "PKCS12" ); System.setProperty("javax.net.ssl.keyStore",keystore); System.setProperty("javax.net.ssl...

Keytool set hostname

Good Morning, I am just attempting to use the java keytool but I cannot figure out how to set the hostname. This is what is how I am attempting: hostname[username:/this/is/a/path][640]% keytool -keystore server.keystore -genkeypair -alias hostname Enter keystore password: Re-enter new password: What is your first and last name? [U...

Keytool create a trusted self signed certificate

I am trying to use the (java) keytool to create a self signed certificate but when I attempt to use it I get the following exception (see bottom for entire exception). ...<5 more exceptions above this> Caused by: sun.security.validator.ValidatorException: No trusted certificate found at sun.security.validator.SimpleValidator.b...

Revoking Distribution certificate for iPhone

If I revoke the distribution certificate for a iPhone app that is already in the App store, will it stop working for customers? ...

Using a PFX Certificate to connect to an HTTP site

Here's the scenario: I need to connect to a web site to retrieve electronic lab results formatted in XML. In order to connect, I need to use a digital certificate. I've been able to get a version of this working in Perl. It looks like this: #!/usr/bin/env perl use strict; use WWW::Mechanize; $|++; my $username = 'xxx'; my $password...

Help Soap Response using ssl basic authentication and client certificates

Hello all I'm trying to issue a simple request to a protected wsdl and web service using ssl, client certificates and basic authentication. Here's the code require 'savon' client = Savon::Client.new "https://example.com/service?wsdl" client.request.http.ssl_client_auth( :cert => OpenSSL::X509::Certificate.new(File.read("cert.pem")), ...