active questions tagged certificate - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T03:07:15Zhttp://stackoverflow.com/feeds/tag/certificatehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1816810/java-invalid-keystore-format-when-generated-through-code0Java: Invalid keystore format, when generated through codejavahollic2009-11-29T21:17:16Z2009-11-29T21:42:16Z
<p>This has been asked a couple of times, but none provide coded test cases. Here I give an example of the problem:</p>
<ol>
<li>programmatic generation of a Keystore (works)</li>
<li>creation of certificate within that store (works)</li>
<li>saving keystore to disk (works)</li>
<li>listing keystore with keytool (works)</li>
<li>loading the keystore programmatically (fails with IOException: InvalidKeystoreFormat)</li>
</ol>
<p>What I dont get is that in both save and load, I use <em>KeyStore.getInstance("JKS")</em>, but its failing. Any suggestions welcome!</p>
<p><strong>Runtime output:</strong></p>
<pre>
Creating private keystore at 'private.keystore'.
Created keystore, now created signer cert
Created signer cert, saving cert
Reloading keystore:
Failed to load the keystore after creation: Invalid keystore format
</pre>
<p><strong>Test case source:</strong></p>
<pre>
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.security.InvalidKeyException;
import java.security.KeyStore;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException;
import java.security.PrivateKey;
import java.security.SignatureException;
import java.security.cert.Certificate;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import sun.security.x509.X500Name;
public class KeystoreCreator
{
private String fPrivateKeyStore;
private String fPrivateKeyStorePassword;
private String fPrivateKeyStoreKeyPassword;
private String fPublicKeyCipherPassword;
private String fPrivateKeyAlias;
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception
{
KeystoreCreator creator = new KeystoreCreator();
creator.setPrivateKeyStore("private.keystore");
creator.setPrivateKeyStorePassword("beer123");
creator.setPrivateKeyAlias("myalias");
creator.setPrivateKeyStoreKeyPassword("beer123");
creator.setPublicKeyCipherPassword("beer123");
creator.initKeyStores();
}
public KeystoreCreator()
{
}
public void setPrivateKeyStore(String name)
{
fPrivateKeyStore=name;
}
public void setPrivateKeyStorePassword(String pass)
{
fPrivateKeyStorePassword=pass;
}
public void setPrivateKeyStoreKeyPassword(String pass)
{
fPrivateKeyStoreKeyPassword=pass;
}
public void setPublicKeyCipherPassword(String pass)
{
fPublicKeyCipherPassword=pass;
}
public void setPrivateKeyAlias(String alias)
{
fPrivateKeyAlias=alias;
}
public void initKeyStores() throws Exception
{
OutputStream out = null;
File f=new File(fPrivateKeyStore);
if (f.exists())
{
f.delete();
if (f.exists())
{
throw new IOException("Want to remove the keystore but can't, still reported as present after removal");
}
}
try
{
System.out.println("Creating private keystore at '" + fPrivateKeyStore + "'.");
out = new FileOutputStream(fPrivateKeyStore);
KeyStore privateKeyStore = KeyStore.getInstance("JKS");
privateKeyStore.load(null, fPrivateKeyStorePassword.toCharArray());
System.out.println("Created keystore, now created signer cert");
X500Name x500name=getCA();
Certificate cert = createCertificate(fPrivateKeyAlias, fPrivateKeyStoreKeyPassword, x500name, privateKeyStore);
System.out.println("Created signer cert, saving cert");
privateKeyStore.store(out, fPublicKeyCipherPassword.toCharArray());
out.flush();
out.close();
//try to load it.
KeyStore reloadedKeyStore = KeyStore.getInstance("JKS");
try
{
InputStream reloadedIs=getClass().getClassLoader().getResourceAsStream(fPrivateKeyStore);
if (reloadedIs!=null)
{
System.out.println("Reloading keystore:");
reloadedKeyStore.load(reloadedIs, fPrivateKeyStorePassword.toCharArray());
}
}
catch (Exception e)
{
System.err.println("Failed to load the keystore after creation: "+e.getLocalizedMessage());
}
}
catch (Exception e)
{
System.err.println("Failed to save the keystore: "+e.getLocalizedMessage());
}
}
private X500Name getCA() throws IOException
{
return new sun.security.x509.X500Name("a","b", "c","d","e", "GB");
}
public Certificate createCertificate( String alias, String keyPassword,
sun.security.x509.X500Name x500Name, KeyStore keyStore ) throws NoSuchAlgorithmException,
InvalidKeyException, CertificateException, SignatureException, NoSuchProviderException,
KeyStoreException {
sun.security.x509.CertAndKeyGen keypair = new sun.security.x509.CertAndKeyGen( "RSA", "MD5WithRSA" );
keypair.generate( 1024 );
PrivateKey privKey = keypair.getPrivateKey();
X509Certificate[] chain = new X509Certificate[1];
chain[0] = keypair.getSelfCertificate( x500Name, 7000 * 24 * 60 * 60 );
keyStore.setKeyEntry( alias, privKey, keyPassword.toCharArray(), chain );
Certificate cert = keyStore.getCertificate( alias );
return cert;
}
}
</pre>
http://stackoverflow.com/questions/1815506/how-to-obtain-codesigned-application-certificate-info0How to obtain codesigned application certificate infoMartin Kovachev2009-11-29T13:11:44Z2009-11-29T20:41:25Z
<p>Hi folks,</p>
<p>I am having a tough time finding an answer to my codesigning issues.</p>
<p>We have an application for Mac OS written under Cocoa. Finally - we did our codesigning, but i would like to add an extra security check - within the executable itself.</p>
<p>My idea is to validate the fingerprint of the certificate with which the current executable is signed when it is started. If it is missing or invalid (checked against a hardcoded hash within the application) - we shut it down.</p>
<p>So far, i haven't been able how to obtain the certificate used to codesign the executable programatically and check its data.</p>
<p>Does anyone have a clue on how to do this?</p>
<p>Thank you veery much!
Martin K.</p>
http://stackoverflow.com/questions/1581246/how-can-my-server-securely-authenticate-iphone-in-app-purchase4How can my server securely authenticate iPhone in-app purchase?jeff70912009-10-17T02:35:51Z2009-11-27T14:17:30Z
<p>Look at Apple's diagram for the <a href="http://developer.apple.com/iPhone/library/documentation/NetworkingInternet/Conceptual/StoreKitGuide/Overview%20of%20the%20Store%20Kit%20API/OverviewoftheStoreKitAPI.html#//apple%5Fref/doc/uid/TP40008267-CH100-SW14" rel="nofollow">server purchase model</a>.</p>
<p>In step #9, how can the server know that it is really talking with an iPhone that is entitled to the purchase, and that Eve is not performing a replay with a dishonestly obtained receipt?</p>
<p>The receipt may be valid, but that doesn't prove that the sender is the entitled party.</p>
<p>Is there any notion of a device certificate on the iPhone that can be used to sign the receipt?</p>
<p>Is there any way to bind the receipt to the device, or bind the receipt to both the iTunes account and to the device, so the server can validate?</p>
http://stackoverflow.com/questions/1801565/code-signing-didnt-complain-when-i-changed-an-exe-file0Code signing didn't complain when I changed an exe file?Tony Toews2009-11-26T04:43:12Z2009-11-26T05:18:52Z
<p>I purchased a code signing certificate and all looks well. When tested inside a clean Virtual PC OS I no longer get the "The Publisher could not be verified" message.</p>
<p>So just for grins, using a hex editor, I change a few constants in the VB6 exe which I see on a form. And the VB 6 exe still runs wihout any error message.</p>
<p>I thought the code signing certificate would tell you if the file had been changed in any way?</p>
http://stackoverflow.com/questions/1800673/generate-certificate-for-signing-air-app0Generate certificate for signing AIR appMiguel Ping2009-11-25T23:31:47Z2009-11-26T02:55:53Z
<p>How do I generate a self-signed certificate to sign an adobe AIR app? I'm using the maven flexmojos plugin. I've followed an openssl tutorial to generate a .p12, but now the mvn plugin /adt compiler is telling me that the certificate is not a X509 certificate.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1762875/automating-clickonce-deployment-with-security-certificates-etc-such-that-cli0Automating Clickonce deployment with security ( certificates etc. ) such that client installs the application without any prompt. Geny2009-11-19T12:13:15Z2009-11-25T11:20:55Z
<p>Hi, </p>
<p>I just read this --> <a href="http://msdn.microsoft.com/en-us/library/ms996418.aspx" rel="nofollow">Configuring ClickOnce Trusted Publishers</a> and got it running at another computer on network. I deployed the application on network itself (i.e. \\abc\something ).</p>
<p>Though I could not find certmgr.exe as part of Windows core component, as the article says ( ..so you will need to use the certificate management console (certmgr.exe) included in Windows.. ), instead found it at "C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin". It worked fine, BUT DID I MISS SOMETHING? I MEAN, WHAT IF USER DID NOT HAD VISUAL STUDIO INSTALLED? </p>
<p>Now, I had to EXPLICITLY go and get this thing done(i.e. importing the certificate using certmgr.exe) on user/client's computer on network. Is there a way to AUTOMATE it? where I do nothing explicitly and when user clicks setup.exe in the deployed application on network ( \\abc\something ), he/she can install the same with out getting security based prompts.</p>
<p>I checked out BOOTSTRAP, but could not exactly understand how to use it, HERE? I thought of pasting the certificate at it's appropriate location ( thought that importing the certificate using certmgr.exe pastes it somewhere on disk? in some "personal" directory ) ? </p>
<p>In gist, I want to automate the process where user can install the application from network (\\abc\something) without security/trust prompts. And I as a developer need not EXPLICITLY import the certificate in his/her/user/client's computer. </p>
<p>Please help, will greatly appreciate it. Thanks. </p>
http://stackoverflow.com/questions/1788031/how-can-i-have-multiple-ssl-certificates-for-a-java-server1How can I have multiple SSL certificates for a Java serverSoftware Monkey2009-11-24T05:38:01Z2009-11-25T01:34:36Z
<p>I have an in-house HTTP server written in Java; full source code at my disposal. The HTTP server can configure any number of web sites, each of which will have a separate listen socket created with:</p>
<pre><code>skt=SSLServerSocketFactory.getDefault().createServerSocket(prt,bcklog,adr);
</code></pre>
<p>Using a standard key store created with the Java keytool, I cannot for the life of me work out how to get different certificates associated with different listen sockets so that each configured web site has it's own certificate.</p>
<p>I'm in a time pinch for this now, so some code samples that illustrate would be most appreciated. But as much I would appreciate any good overview on how JSSE hangs together in this regard (I have searched Sun's JSSE doco until my brain hurts (literally; though it might be as much caffeine withdrawal)).</p>
<p><strong>Edit</strong></p>
<p>Is there no simple way to use the alias to associate the server certificates in a key store with the listen sockets? So that:</p>
<ul>
<li>The customer has one key store to many for all certificates, and</li>
<li>There is no need to fiddle around with multiple key stores, etc.</li>
</ul>
<p>I was getting the impression (earlier this afternoon) that I could write a simple KeyManager, with only <code>chooseServerAlias(...)</code> returning non-null, that being the name of the alias I wanted - anyone have any thoughts on that line of reasoning?</p>
<p><strong>Solution</strong></p>
<p>The solution I used, built from <a href="http://stackoverflow.com/users/3474/sylvarking">slyvarking</a>'s answer was to create a temporary key store and populate it with the desired key/cert extracted from the singular external key store. Code follows for any who are interested (svrctfals is my "server certificate alias" value):</p>
<pre><code> SSLServerSocketFactory ssf; // server socket factory
SSLServerSocket skt; // server socket
// LOAD EXTERNAL KEY STORE
KeyStore mstkst;
try {
String kstfil=GlobalSettings.getString("javax.net.ssl.keyStore" ,System.getProperty("javax.net.ssl.keyStore" ,""));
String ksttyp=GlobalSettings.getString("javax.net.ssl.keyStoreType" ,System.getProperty("javax.net.ssl.keyStoreType" ,"jks"));
char[] kstpwd=GlobalSettings.getString("javax.net.ssl.keyStorePassword",System.getProperty("javax.net.ssl.keyStorePassword","")).toCharArray();
mstkst=KeyStore.getInstance(ksttyp);
mstkst.load(new FileInputStream(kstfil),kstpwd);
}
catch(java.security.GeneralSecurityException thr) {
throw new IOException("Cannot load keystore ("+thr+")");
}
// CREATE EPHEMERAL KEYSTORE FOR THIS SOCKET USING DESIRED CERTIFICATE
try {
SSLContext ctx=SSLContext.getInstance("TLS");
KeyManagerFactory kmf=KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm());
KeyStore sktkst;
char[] blkpwd=new char[0];
sktkst=KeyStore.getInstance("jks");
sktkst.load(null,blkpwd);
sktkst.setKeyEntry(svrctfals,mstkst.getKey(svrctfals,blkpwd),blkpwd,mstkst.getCertificateChain(svrctfals));
kmf.init(sktkst,blkpwd);
ctx.init(kmf.getKeyManagers(),null,null);
ssf=ctx.getServerSocketFactory();
}
catch(java.security.GeneralSecurityException thr) {
throw new IOException("Cannot create secure socket ("+thr+")");
}
// CREATE AND INITIALIZE SERVER SOCKET
skt=(SSLServerSocket)ssf.createServerSocket(prt,bcklog,adr);
...
return skt;
</code></pre>
http://stackoverflow.com/questions/1781717/netsh-error-on-windows-2008-r20netsh error on windows 2008 R2Alex2009-11-23T08:08:38Z2009-11-24T11:33:28Z
<p>We are upgrading the server from Windows 2003 to 2008. As part of the process, I need to configure a port with a SSL certificate. When I ran the following command:</p>
<p>netsh http add sslcert ipport=1.2.3.4:8000 certhash=certificatehash appid={someGUID} </p>
<p>I got the following error:</p>
<p>SSL Certificate add failed, Error: 1312
A specified logon session does not exist. It may already have been terminated.</p>
<p>When running the command prompt with an administrator does not resolve the issue. Notice that I did not run into this issue on Windows 2003 (using httpcfg) and that things work well there.</p>
<p>Has anyone encountered this issue? Thanks.</p>
http://stackoverflow.com/questions/1786019/where-did-my-certificate-store-go0Where did 'My" certificate store go?Will2009-11-23T21:15:38Z2009-11-23T21:15:38Z
<p>Because I'm awesome I'm trying to run the latest WIF demo app using VS2k10 B2 on my 7 boxen... 64bit of course (my neckbeard is strong) I'm having a problem getting it running.</p>
<p>Part of the whole demo thing requires I install some certificates on the local machine. Problem is that they ask me to install some of the website certs into a certificate store called <strong>LocalMachine/My</strong>. Well, there doesn't appear to be any <strong>/My</strong> anymore. There appears a suspiciously similar store called <em>Personal</em>, but the app doesn't work if I install the certs there and change the configurations to look in <strong>LocalMachine/Personal</strong>.</p>
<p>If I install the certs in <strong>TrustedPeople</strong> (it's mentioned as a valid location by the exception that was thrown when I attempted to use Personal), <strong>is that sufficient? Would doing this be considered bad form on a production machine?</strong></p>
<p><hr></p>
<p>The Windows Identity Foundation test project can be found at: <a href="http://claimsbasedwpf.codeplex.com" rel="nofollow">http://claimsbasedwpf.codeplex.com</a></p>
<p>The exception:</p>
<blockquote>
<p>Property name: 'certificateReference'
Error: 'ID1025: Cannot find a unique
certificate that matches the criteria.
StoreName: 'My' StoreLocation:
'LocalMachine' X509FindType:
'FindBySubjectDistinguishedName'
FindValue: 'CN=busta-rpsts.com''</p>
</blockquote>
http://stackoverflow.com/questions/1778767/sslrequirecert-doesnt-work-with-a-wcf-service0SslRequireCert doesn't work with a WCF-serviceYrlec2009-11-22T13:55:43Z2009-11-22T13:55:43Z
<p>I'm currently developing a RESTful service using WCF and WCF Rest Contrib. The service is split into two parts: BasicAuthService and CertAuthService. On the first one the client is authenticated using Basic authentication (over HTTPS) and on the second X509 client certificates are used. </p>
<p>My problem is that IIS never requests a client certificate from the client when SslRequireCert is set on the path (which it is for ClientAuthService). If I set it to SslNegotiateCert then IIS sends a certificate request during the TLS-handshake but then it will let the client through if no certificate is returned by the client (which is how SslNegotiateCert should work). If I set SslNegotiateCert on some other path and then the client requests that path first and then ClientAuthService, then the client will authenticate itself using the certificate; because then the TLS-session is cached from the previous request. </p>
<p>My question is: do you know any way to solve this? The only idea I have right now is to set SslNegotiateCert on CertAuthService and then implement some code myself which checks for a valid certificate and returns 403 otherwise. However I'd prefer to not have to implement security checks like these myself because there's always a risk that you screw up when you write your own "security-code".</p>
<p>You can see the web.config I'm using below (it isn't a complete web.config, I've removed irrelevant parts).</p>
<pre><code><configuration>
<system.web>
<httpModules>
<add name="ServiceAnonymityModule" type="WcfRestContrib.Web.ServiceAnonymityModule, WcfRestContrib" />
</httpModules>
</system.web>
<location path="CertAuthService.svc">
<system.webServer>
<security>
<access sslFlags="SslRequireCert" />
</security>
</system.webServer>
</location>
<system.webServer>
<security>
<access sslFlags="SslNegotiateCert" />
</security>
<validation validateIntegratedModeConfiguration="false" />
<modules>
<remove name="ServiceAnonymityModule" />
<add name="ServiceAnonymityModule" type="WcfRestContrib.Web.ServiceAnonymityModule, WcfRestContrib" />
</modules>
<handlers>
<remove name="WebServiceHandlerFactory-Integrated" />
</handlers>
</system.webServer>
<system.serviceModel>
<services>
<service name="RestWeb.BasicAuthService" behaviorConfiguration="RestWeb.BasicAuthServiceBehaviour">
<endpoint address="" binding="webHttpBinding" bindingConfiguration="webHttpBindingBasicConfig" contract="RestWeb.BasicAuthService">
</endpoint>
</service>
<service name="RestWeb.CertAuthService" behaviorConfiguration="RestWeb.CertAuthServiceBehaviour">
<endpoint address="" binding="webHttpBinding" bindingConfiguration="webHttpBindingCertConfig" contract="RestWeb.CertAuthService">
</endpoint>
</service>
</services>
<extensions>
<behaviorExtensions>
<add name="webAuthentication" type="WcfRestContrib.ServiceModel.Configuration.WebAuthentication.ConfigurationBehaviorElement, WcfRestContrib, Version=1.0.5.0, Culture=neutral, PublicKeyToken=89183999a8dc93b5" />
<add name="errorHandler" type="WcfRestContrib.ServiceModel.Configuration.ErrorHandler.BehaviorElement, WcfRestContrib, Version=1.0.5.0, Culture=neutral, PublicKeyToken=89183999a8dc93b5" />
<add name="webFormatter" type="WcfRestContrib.ServiceModel.Configuration.WebDispatchFormatter.ConfigurationBehaviorElement, WcfRestContrib, Version=1.0.5.0, Culture=neutral, PublicKeyToken=89183999a8dc93b5" />
<add name="webErrorHandler" type="WcfRestContrib.ServiceModel.Configuration.WebErrorHandler.ConfigurationBehaviorElement, WcfRestContrib, Version=1.0.5.0, Culture=neutral, PublicKeyToken=89183999a8dc93b5" />
</behaviorExtensions>
</extensions>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
<bindings>
<webHttpBinding>
<binding name="webHttpBindingBasicConfig">
<security mode="Transport">
<transport clientCredentialType="None" />
</security>
</binding>
<binding name="webHttpBindingCertConfig">
<security mode="Transport">
<transport clientCredentialType="Certificate" />
</security>
</binding>
</webHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="RestWeb.BasicAuthServiceBehaviour">
<serviceDebug includeExceptionDetailInFaults="true" />
<serviceCredentials>
</serviceCredentials>
<webFormatter>
<formatters defaultMimeType="application/octet-stream">
<formatter mimeTypes="application/octet-stream" type="RestWeb.Serialization.ProtocolBuffersEncoder, RestWeb" />
</formatters>
</webFormatter>
<errorHandler errorHandlerType="WcfRestContrib.ServiceModel.Web.WebErrorHandler, WcfRestContrib" />
</behavior>
<behavior name="RestWeb.CertAuthServiceBehaviour">
<serviceDebug includeExceptionDetailInFaults="true" />
<serviceMetadata httpsGetEnabled="true" />
<serviceCredentials>
</serviceCredentials>
<webFormatter>
<formatters defaultMimeType="application/octet-stream">
<formatter mimeTypes="application/octet-stream" type="RestWeb.Serialization.ProtocolBuffersEncoder, RestWeb" />
</formatters>
</webFormatter>
<errorHandler errorHandlerType="WcfRestContrib.ServiceModel.Web.WebErrorHandler, WcfRestContrib" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
</code></pre>
http://stackoverflow.com/questions/848205/how-can-i-verifiy-signed-jars-with-pure-java1How can I verifiy signed JARs with pure Java?polyurethan2009-05-11T13:51:40Z2009-11-20T09:00:39Z
<p>I don't want to use the <code>jarsigner -verify</code>. Is there no JAR util package for my problem?
I just want to verfiy a JAR in pure Java.</p>
http://stackoverflow.com/questions/1741432/how-can-i-create-an-automated-test-for-valid-windows-installer-certificates1How can I create an automated test for valid WIndows installer certificates?jakobengblom22009-11-16T10:52:43Z2009-11-19T00:06:48Z
<p>We have a situation where for some reason the certificates on our Windows Installers for our product tends to get broken or go bad. Never mind why, the key is that it is not currently detected by our nightly test runs. </p>
<p>So how can that be done?</p>
<p>I.e., an automatic test that runs a Windows installer and checks if it pops up a UAC or bad cert warning in some other way (depends on the setup of Windows exactly how a bad cert is reported, in my experience). Something that can be run as part of a scripted large batch of tests, and report success or failure without a human involved. </p>
<p>I tried searching on stack overflow, but I could not find any other question dealing with this particular issue.</p>
http://stackoverflow.com/questions/1403837/setting-certificate-friendly-name1Setting Certificate Friendly NameMark Sutton2009-09-10T07:32:38Z2009-11-18T10:45:54Z
<p>Im trying to set the certificate friendly name during the certificate request/acceptance process. I understand that this a property of the microsoft store rather than the certificate and an wondering what .net/c# technique might be used to set it.</p>
http://stackoverflow.com/questions/1753898/accept-ssl-certificate-in-vb6-using-the-webbrowser-control0Accept SSL Certificate in vb6 using the Webbrowser control.neddy2009-11-18T05:44:58Z2009-11-18T09:37:32Z
<p>The Problem:
I am creating a vb6 application that will connect to a particular web service located on a a HTTPS site. The problem is, the HTTPS site I'm accessing requires all request to accept it's certificate policy. (as its a self-signed ssl certificate)</p>
<p>Basically I need the application to accept security certificate dialog boxes automatically. A sample security dialog is shown below:</p>
<p>Cheers in advance.</p>
<p>@EDIT:</p>
<p>I Cant' post an image yet as i am a new user... Please see the url below for a sample image:</p>
<blockquote>
<p><a href="http://oit.nd.edu/network/nomad/images/ie%5Fcerts.gif" rel="nofollow">http://oit.nd.edu/network/nomad/images/ie%5Fcerts.gif</a></p>
</blockquote>
http://stackoverflow.com/questions/1742938/wcf-could-not-establish-trust-relationship-for-the-ssl-tls-secure-channel-with0WCF : Could not establish trust relationship for the SSL/TLS secure channel with authority - back to the drawing boardJL2009-11-16T15:35:47Z2009-11-16T15:47:21Z
<p>Really thought I had this issue fixed, but it was only disguised before. </p>
<p>I have a WCF service hosted in IIS 7 using HTTPS. When I browse to this site in internet explorer, it works like a charm, this is because I HAVE added the certificate to the local root certificate authority store. </p>
<p>I'm developing on 1 machine, so client and server are same machine. The certificate is self-signed directly from IIS 7 management snap in.</p>
<p>I continually get this error now:</p>
<p>Could not establish trust relationship for the SSL/TLS secure channel with authority.... when called from client console.</p>
<p>I manually gave myself permissions and network service to the certificate, using findprivatekey and using cacls.exe </p>
<p>Where else can I look I seem to have exhausted all possibilities as to why I can't connect.</p>
<p><strong>**UPDATE **</strong></p>
<p>thanks for answers so far, I tried to connect to the service using SOAPUI, and that works, so it must be an issue in my client application, which is code based on what used to work with http.... wonder what the issue is....</p>
http://stackoverflow.com/questions/1694466/how-can-i-verify-that-a-certificate-is-an-ev-certificate-with-java1How can I verify that a certificate is an EV certificate with Java?mihi2009-11-07T21:23:47Z2009-11-15T20:27:13Z
<p>Consider the following sample code which uses a <code>TrustManager</code> to log whether an outgoing connection used a valid certificate (but accept the connection in all cases):</p>
<pre><code>import java.security.*;
import java.security.cert.*;
import javax.net.ssl.*;
public class CertChecker implements X509TrustManager {
private final X509TrustManager defaultTM;
public CertChecker() throws GeneralSecurityException {
TrustManagerFactory tmf = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
tmf.init((KeyStore)null);
defaultTM = (X509TrustManager) tmf.getTrustManagers()[0];
}
public void checkServerTrusted(X509Certificate[] certs, String authType) {
if (defaultTM != null) {
try {
defaultTM.checkServerTrusted(certs, authType);
System.out.println("Certificate valid");
} catch (CertificateException ex) {
System.out.println("Certificate invalid: " + ex.getMessage());
}
}
}
public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {}
public X509Certificate[] getAcceptedIssuers() { return null;}
public static void main(String[] args) throws Exception {
SSLContext sc = SSLContext.getInstance("SSL");
sc.init(null, new TrustManager[] {new CertChecker()}, new SecureRandom());
SSLSocketFactory ssf = (SSLSocketFactory) sc.getSocketFactory();
((SSLSocket)ssf.createSocket(args[0], 443)).startHandshake();
}
}
</code></pre>
<p>What do I have to do inside the <code>checkClientTrusted</code> method to check if that certificate is an extended validation certificate (green address bar in modern browsers) or a normal one (yellow address bar)?</p>
<p><strong>edit:</strong></p>
<p>I'm trying to get a <code>CertPathValidator</code> working, but somehow I only get exceptions about certificate is not a CA certificate... Any ideas?</p>
<p><strong>edit2:</strong> Using <code>PKIXParameters</code> instead of <code>PKIXBuilderParameters</code></p>
<pre><code>private boolean isEVCertificate(X509Certificate[] certs, String authType) {
try {
CertPath cp = new X509CertPath(Arrays.asList(certs));
KeyStore ks = KeyStore.getInstance("JKS");
ks.load(new FileInputStream(new File(System.getProperty("java.home"), "lib/security/cacerts")), null);
PKIXParameters cpp = new PKIXParameters(ks);
cpp.setRevocationEnabled(false);
CertPathValidator cpv = CertPathValidator.getInstance("PKIX");
PKIXCertPathValidatorResult res = (PKIXCertPathValidatorResult) cpv.validate(cp, cpp);
System.out.println(res.getTrustAnchor().getCAName());
System.out.println(res.getPolicyTree().getValidPolicy());
System.out.println(cp);
return false;
} catch (Exception ex) {
ex.printStackTrace();
return false;
}
}
</code></pre>
<p>I am testing against real-world EV certificates. The code now works with <code>www.paypal.com</code> (in the sense that it does not throw an exception), but does not work with <code>banking.dkb.de</code>. :-(</p>
<p>But even with Paypal.com the trust anchor getCAName returns null, so how can I know against which CA it was validated so that I can look up the right EV policy?</p>
http://stackoverflow.com/questions/250742/who-sells-the-cheapest-ev-ssl-certificate10Who sells the cheapest EV SSL certificate?Zack Peterson2008-10-30T16:00:36Z2009-11-15T18:12:59Z
<p>I want a SSL certificate for my web site that will not only be accepted without warning by all popular browsers (at least accepted by <a href="http://www.mozilla.org/projects/security/certs/included/#DigiCert" rel="nofollow">Firefox</a> and <a href="http://support.microsoft.com/kb/931125" rel="nofollow">Internet Explorer</a>), but also give my visitors the green address bar.</p>
<p>Which certificate authority is selling the least expensive <a href="http://en.wikipedia.org/wiki/Extended_Validation_Certificate" rel="nofollow">extended validation</a> SSL certificates?</p>
<p><img src="http://img204.imageshack.us/img204/4838/ebayssliequ5.gif" alt="SSL EV in Microsoft Internet Explorer" /></p>
<p><img src="http://img517.imageshack.us/img517/4854/ebaysslffyc0.gif" alt="SSL EV in Mozilla Firefox" /></p>
http://stackoverflow.com/questions/246422/how-can-i-deploy-an-iphone-application-from-xcode-to-real-iphone-device3How can I deploy an iPhone Application from Xcode to real iPhone deviceDFG2008-10-29T11:06:18Z2009-11-14T07:42:02Z
<p>How can I deploy an iPhone Application from Xcode to real iPhone device without having an Apple 99$ Certificate?</p>
http://stackoverflow.com/questions/1462009/renew-a-ssl-cert-on-iis60renew a SSL cert on IIS6?Keith Barrows2009-09-22T19:07:34Z2009-11-13T13:41:17Z
<p>This question is active at <a href="http://serverfault.com/questions/67844/renew-a-ssl-cert-on-iis6">http://serverfault.com/questions/67844/renew-a-ssl-cert-on-iis6</a>. Thanks.</p>
<p><hr /></p>
<p>My manager ordered a new wild card cert for our website as our current is expiring in a few days. Now, I am stuck as I cannot figure out how to install it? It is a cert from GoDaddy.com. I have downloaded it to my server. Upon unzipping it I have a PB7 file (intermediate cert) and a CRT file.</p>
<p>I open IIS6, click Properties on the website I want to update (it already has the old SSL Cert on it). Click on the Directory Security tab then the Server Certificate... button.</p>
<p>Now, I am presented with the following options:</p>
<ul>
<li>Renew the current certificate - was
done manually through GoDaddy and no
pending renewal was ever issued.</li>
<li>Remove the current certificate - does not sound right for us.</li>
<li>Replace the current certificate - possible...</li>
<li>Export the current certificate to a .pfx file</li>
<li>Copy or move the current certificate to a remote server site</li>
</ul>
<p>Now, when I choose the REPLACE option it presents me with a dialog of <em>already installed certs</em>!!! My new one is not in there.</p>
<p>What the heck do I do? Google/Bing is being of no help to me right now.</p>
http://stackoverflow.com/questions/1722181/determine-certificate-type0Determine certificate typel0b02009-11-12T13:29:33Z2009-11-13T02:19:37Z
<p>There doesn't seem to be any sort of standard naming convention for OpenSSL certificates, so I'd like to know if there's a simple command to get important information about any OpenSSL certificate, regardless of type. I'd like to know at least the certificate type (x509, RSA, DSA) and whether it's a public or private key. Looking at the contents of a certificate I just extracted from a PKCS12 file, neither of these are explicitly shown.</p>
http://stackoverflow.com/questions/757001/create-a-signed-certificate-with-crypt32-dll0Create a signed certificate with crypt32.dllRevision172009-04-16T16:43:59Z2009-11-12T02:00:04Z
<p>I want to create certificates programmatically in C#.net which are signed by a CA. I was able to create a self signed certificate with CertCreateSelfSignCertificate as described here:
<a href="http://msdn.microsoft.com/en-us/library/aa376039" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa376039</a>(VS.85).aspx
<a href="http://stackoverflow.com/questions/187588/self-signed-certificate-in-windows-without-makecert">http://stackoverflow.com/questions/187588/self-signed-certificate-in-windows-without-makecert</a></p>
<p>I was looking through the MSDN documentation and I can't seem to find a function to generate a certificate and sign it from a request. Most functions seem to be for manipulating the certificate store. Am I barking up the wrong dll here?</p>
http://stackoverflow.com/questions/1717196/multiple-services-with-same-self-signed-certificate0multiple services with same self-signed certificateScott P2009-11-11T18:32:03Z2009-11-11T18:38:10Z
<p>I've got a WCF intranet application I'm working on that will have 150 clients controlled/monitored by a control application. Is it kosher to create a self-signed certificate and install this same certificate on each of the 150 clients?</p>
<p>I want security between the client and server but will not have authentication support from a domain controller et al.</p>
<p>Any pitfalls in using the same certificate on all these clients?</p>
http://stackoverflow.com/questions/782592/importing-a-certificate-into-jetty0Importing a certificate into Jettypcampbell2009-04-23T16:47:01Z2009-11-11T15:48:38Z
<p>The overall goal here is to have jetty be configured with a client certificate to be able to call a secure SOAP web service.</p>
<p>Does anyone know how to configure Jetty to accept a client certificate (*.cer) ?</p>
<p><strong>Update</strong>: I did not find an easy way to implement a solution to my problem/question, but the sole answer here technically is correct!</p>
http://stackoverflow.com/questions/1460626/iphone-https-client-cert-authentication1iPhone: HTTPS client cert authenticationKamil2009-09-22T15:01:14Z2009-11-11T08:37:12Z
<p>I'm fighting with a client certificate authentication. When a server needs a credential (a certificate in this case), this method is invoked from NSURLConnection delegate:</p>
<ul>
<li>(void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge</li>
</ul>
<p>I want to load a certificate from a file, fill a credential and run this method:</p>
<p>[[challenge sender] useCredential:[self credential] forAuthenticationChallenge:challenge];</p>
<p>But I don't know how to initialize (or fill) a SecIdentityRef parameter. Here is my code that creates the credentials:</p>
<pre><code>NSString *certPath = [[NSBundle mainBundle] pathForResource:@"certificate" ofType:@"cer"];
NSData *certData = [[NSData alloc] initWithContentsOfFile:certPath];
SecIdentityRef myIdentity; // ???
SecCertificateRef myCert = SecCertificateCreateWithData(NULL, (CFDataRef)certData);
[certData release];
SecCertificateRef certArray[1] = { myCert };
CFArrayRef myCerts = CFArrayCreate(NULL, (void *)certArray, 1, NULL);
CFRelease(myCert);
NSURLCredential *credential = [NSURLCredential credentialWithIdentity:myIdentity
certificates:(NSArray *)myCerts
persistence:NSURLCredentialPersistencePermanent];
CFRelease(myCerts);
</code></pre>
<p>Does anybody know how to solve it? Thanks.</p>
http://stackoverflow.com/questions/1713650/change-pfx-password-in-net0Change pfx password in .NETimambenjol2009-11-11T07:39:19Z2009-11-11T07:39:19Z
<p>Hi, I wonder how to change the password for .pfx file using crypt32.dll. I tried :</p>
<pre><code>public bool ChangePassword(String pfxfilename, String pswd, String newPfxfilename, String newPswd) {
IntPtr hMemStore = IntPtr.Zero;
IntPtr hCertCntxt = IntPtr.Zero;
IntPtr pProvInfo = IntPtr.Zero;
bool result = false;
if (!File.Exists(pfxfilename)) {
Console.WriteLine("File '{0}' not found.", pfxfilename);
return result;
}
byte[] pfxdata = PfxOpen.GetFileBytes(pfxfilename);
if (pfxdata == null || pfxdata.Length == 0)
return result;
CRYPT_DATA_BLOB ppfx = new CRYPT_DATA_BLOB();
ppfx.cbData = pfxdata.Length;
ppfx.pbData = Marshal.AllocHGlobal(pfxdata.Length);
Marshal.Copy(pfxdata, 0, ppfx.pbData, pfxdata.Length);
if (!Win32.PFXIsPFXBlob(ref ppfx)) {
Console.WriteLine("!!!! File '{0}' is NOT a valid pfx blob !!!", pfxfilename);
return result;
}
hMemStore = Win32.PFXImportCertStore(ref ppfx, pswd, CRYPT_USER_KEYSET);
if (hMemStore == IntPtr.Zero) {
string errormessage = new Win32Exception(Marshal.GetLastWin32Error()).Message;
Console.WriteLine("\n{0}", errormessage);
Marshal.FreeHGlobal(ppfx.pbData);
return result;
}
const uint EXPORT_PRIVATE_KEYS = 0x0004;
const uint REPORT_NOT_ABLE_TO_EXPORT_PRIVATE_KEY = 0x0002;
const uint pfxflags = EXPORT_PRIVATE_KEYS | REPORT_NOT_ABLE_TO_EXPORT_PRIVATE_KEY;
CRYPT_DATA_BLOB newppfx = new CRYPT_DATA_BLOB();
newppfx.pbData = IntPtr.Zero;
newppfx.cbData = 0;
if (Win32.PFXExportCertStoreEx(hMemStore, ref newppfx, pswd, IntPtr.Zero, pfxflags)) {
newppfx.pbData = Marshal.AllocHGlobal(newppfx.cbData);
if (Win32.PFXExportCertStoreEx(hMemStore, ref newppfx, newPswd, IntPtr.Zero, pfxflags)) {
byte[] pfxblob = new byte[newppfx.cbData];
Marshal.Copy(newppfx.pbData, pfxblob, 0, newppfx.cbData);
Marshal.FreeHGlobal(newppfx.pbData);
PfxOpen.WriteFileBytes(newPfxfilename, pfxblob);
}
}
Marshal.FreeHGlobal(ppfx.pbData);
Marshal.FreeHGlobal(newppfx.pbData);
if (pProvInfo != IntPtr.Zero)
Marshal.FreeHGlobal(pProvInfo);
if (hCertCntxt != IntPtr.Zero)
Win32.CertFreeCertificateContext(hCertCntxt);
if (hMemStore != IntPtr.Zero)
Win32.CertCloseStore(hMemStore, 0);
return result;
}
</code></pre>
http://stackoverflow.com/questions/1713354/after-vs2008-to-vs2010-project-upgrade-getting-manifest-signing-certificate-err0After VS2008 to VS2010 project upgrade getting "manifest signing certificate" error Edward Tanguay2009-11-11T06:03:46Z2009-11-11T06:21:53Z
<p>I created a test project with <strong>VS2008 C# Express</strong> on computer 1 (Vista).</p>
<p>I converted it to <strong>VS2010 C# Express</strong> on computer 2 (Windows 7).</p>
<p>The converted project gives me this <strong>error</strong>:</p>
<blockquote>
<p>Unable to find manifest signing
certificate in the certificate store.</p>
</blockquote>
<p>I've found <a href="http://www.sqlclr.net/Articles/tabid/54/articleType/ArticleView/articleId/9/Default.aspx" rel="nofollow">articles about signing project certificates</a> etc. but they are not that helpful as <strong>I never explicitly signed any certificates</strong> with this project. It is just a small project (with a MDF database / LINQ-to-SQL) that I created with VS2008 C# Express.</p>
<p>I tried first deleting the <strong>.suo</strong> and the <strong>obj</strong> and <strong>bin</strong> directories of the original project before converting but I still gives the same error.</p>
<p><strong>How can I stop the converted VS2010 project from trying to find a "manifest signing certificate in the certificate store"?</strong></p>
http://stackoverflow.com/questions/1711783/problem-with-certificate0Problem with certificateArturo Caballero2009-11-10T22:44:52Z2009-11-10T23:51:32Z
<p>Hi,</p>
<p>I´m developing a tool (ASP.NET page that generates a file with stamped with a private key to be validated later on other app.</p>
<p>I´m using makecert for the certificate creation:</p>
<pre><code>makecert -sky "privatekey" -sk "MyCompany"-n "CN=MyCompany" -ss -pe CertFile.cert
</code></pre>
<p>The generated cert is on my dev machine. Then I run this code and It can be found with no problem:</p>
<pre><code>X509Store store = new X509Store(StoreName.My, StoreLocation.CurrentUser);
X509Certificate2Collection certs;
store.Open(OpenFlags.ReadOnly);
X509Certificate2Collection certs = store.Certificates.Find(X509FindType.FindBySubjectName, "MyCompany", false);
</code></pre>
<p>The certs variable contains no certificates (in a test environment)</p>
<p>I intalled the certificate on the Test Server (Win 2003) using the double click and install cert, using mmc and importing certificate, and exporting the certificate from my machine and then importing in the Test Server.</p>
<p>Is there a step that I´m missing?</p>
<p>UPDATE:</p>
<p>I think this can be the problem. ASPNET User does not have permission to access certificate, also the certificate is not installed on the Machine, just fot the local user.</p>
<p>I´m looking for this link: <a href="http://geekswithblogs.net/lorint/archive/2005/12/30/64516.aspx" rel="nofollow">http://geekswithblogs.net/lorint/archive/2005/12/30/64516.aspx</a></p>
<p>Thanks</p>
http://stackoverflow.com/questions/1709838/how-to-add-timestamping-signature-to-system-io-packaging-package0How to add timestamping signature to System.IO.Packaging.Package?Michael Damatov2009-11-10T17:45:59Z2009-11-10T17:59:42Z
<p>There is a way to create packages, add some parts and sign it with a <code>X509Certificate</code>. </p>
<p>I would also like to add a timestamping signature to the package. </p>
<p>If the certificate <strong>expires</strong> or gets <strong>revoked</strong> the signature should remain valid if the package parts have been timestamped <em>before</em> the expiration/revokation.</p>
<p>P.S. I'm using the <code>System.IO.Packaging.Package</code> class defined in the <code>WindowsBase.dll</code> assembly.</p>
http://stackoverflow.com/questions/1708317/certcreatecertificatecontext-returns-asn1-bad-tag-value-met0CertCreateCertificateContext returns ASN1 bad tag value metunknown (google)2009-11-10T14:20:18Z2009-11-10T15:21:43Z
<p>Hi,</p>
<p>I'm loading a .p7b certificate file into memory and then calling CertCreateCertificateContext on it, but it fails with the error "ASN1 bad tag value met.".</p>
<p>The call look like this:</p>
<p>m_hContext = CertCreateCertificateContext(X509_ASN_ENCODING | PKCS_7_ASN_ENCODING, pbCertEncoded, dwCertEncodedLen);</p>
<p>This returns NULL and GetLastError() returns the error mentioned above.</p>
<p>I created the certificate file by dragging a certificate out of the settings in IE, which then does an automatic export to a file.</p>
<p>What am I doing wrong?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1072311/code-sign-error-the-identity-iphone-developer-x-xxxxx-doesnt-match-any-ident0Code Sign error: The identity 'iPhone Developer: x Xxxxx' doesn't match any identity in any profileCal2009-07-02T03:25:45Z2009-11-10T14:20:18Z
<p>I get this build error when I build my iPhone project to run on my device:
<strong>Code Sign error: The identity 'iPhone Developer: x Xxxxx' doesn't match any identity in any profile</strong></p>
<p>My development code signing certificate expired so I got a new one. On my first attempt I created a new CSR and got the message above. The second time I reused my original CSR and got the same result. Another strange thing is the new certificate has an extra string with brackets after my name in the "common name" when I look at it using Keychain Access like this:</p>
<p>iPhone Developer: x Xxxxx <strong>(3BDUAJYC9Q)</strong></p>
<p>My original certificate didn't have that.</p>
<p>I have Xcode Version 3.1.3
Component versions
Xcode IDE: 1191.0
Xcode Core: 1192.0
ToolSupport: 1186.0</p>
<p>Does anyone know how to solve this?</p>