The self-signed tag has no wiki summary.
0
votes
0answers
17 views
How to use self signed Root CA and Signed Certificates
I'm building a small version of PKI with self signed root certificate. So far I have:
Created a Self Signed Root CA.
Created a makecert command to sign a client certificate with above Root CA.
...
0
votes
0answers
19 views
How to make sure signed jar file deployed on web server (jboss, glassfish, or tomcat) integrity?
In the mobile application, the signed jar (or apk, cod) stay in handset, and OS has some ability to keep them integrity. But in the web application deployed jboss, glassfish or tomcat etc., If it is ...
0
votes
0answers
18 views
using self signed certificate on mobile data plan
Short story: I am experiencing different android app behaviors based on whether I'm on wireless or mobile data. This looks related to using https with self signed certificate.
Long story: I have a ...
2
votes
0answers
83 views
validate self signed certificate wit AFNetworking
I want to connect my iOS App with AFNetwork to my webserver with a self-signed certificate. I found a solution on github (https://github.com/AFNetworking/AFNetworking/pull/694) I tried it out and the ...
0
votes
1answer
54 views
Adding self-signed certificate to Heroku app
I am trying to add a self-signed certificate to one of my apps on Heroku. I have followed the guides from the Dev Center.
https://devcenter.heroku.com/articles/ssl and ...
0
votes
0answers
13 views
Android-WampServer self-signed HTTPS - possibility of unauthorized access
I couldn't find an simple answer to my problem, but if it exists already please accept my apologies :)
I am a beginner and I am working on a little Android app that uses MySQL DB in local network ...
0
votes
0answers
27 views
Username Authentication with Symmetric Key with Metro Can not Work
Today,I want to try the Username Authentication with Symmetric Key Sample with Metro.When I use the default keystore and truststore,my service and my client work well.But when I use the keystore and ...
0
votes
1answer
63 views
Creating Azure Self Signed Certificate
We have an on premise web site which needs to communicate with windows azure service and sql azure service.
I need to create a self signed certificate but makecer.exe is not available on web service. ...
0
votes
1answer
169 views
Google Chrome - Mac OS X - Accept self-signed multi domain SSL Certificate
I've got a self-signed certificate for multiple domains (let's say my.foo.bar.com & yours.foo.bar.com) that I've imported using Keychain Access but Chrome will still not accept it, prompting me ...
0
votes
0answers
35 views
sign self-signed certificate with root (certificate which issued by CA)
I have question, help please who can
How to sign self-signed certificate with root (certificate which issued by CA)????
General purpose of task:
I should create Certificate Chains,where rood should ...
0
votes
0answers
89 views
unable to find valid certification path to requested target with self signed cert between tomcat and postgres
I've installed tomcat and postgres on the same machine.
I want to establish communication throught ssl between thoses servers.
So I've made a self-signed cert, installed it on the data dir of ...
1
vote
1answer
104 views
How to create a self signed certificate using SelfSSL
I have created a self signed certificate using IIS Manager but when I try to access to the website I only find this message:
I found this tutorial which describes pretty well my problem: My ...
0
votes
1answer
198 views
Self signed certificate jQuery AJAX in Mosync
Background:
I've seen a few questions like this one, but none that actually answer this.
I am attempting to use a self signed certificate on a webservice to prove SLL encryption when I communicate to ...
0
votes
1answer
78 views
WCF hosted on IIS 7 cannot verify security of the message
I've a WCF service hosted on IIS 7 which uses a self-signed certificated to provide HTTPS connection.
The server is located in US but the client that consumes it are in the middle east. In order the ...
1
vote
1answer
33 views
Can I use a company's timestamping server with self-signed certificates?
I'm interested in signing my Silverlight XAP with a self-signed certificate, so it can auto-update. I haven't tried yet, but figure I can create a certificate easily with this question/answer I found ...
0
votes
1answer
189 views
WP8, Consuming SOAP with self-signed certificate
I am able to consume a webservice over SOAP. However, I would like to use an https connection with a self-signed certificate.
How can I force my app to use my certificate? I was able to achieve the ...
0
votes
0answers
132 views
Azure Self signed certificate
"Can I" and "How to" use a self-signed certificate on the staging deploy of my cloud service?
Is there specials configurations necessary? i've checked a couple tutorials but they only mention ...
0
votes
1answer
179 views
creating self signed certificate using pyopenssl
i am trying to generate ac self signed X509v3 CA certificate using pyopenssl.
I would want to add the extension authority key identifier(AKID) with keyid containing subject key identifier(SKID).
But ...
0
votes
0answers
64 views
Open ssl “Self-signed certificate encountered” error v1.0.1c
Why does wget https://www.asb.co.nz give Self-signed certificate encountered error in a system running openssl 1.0.1c and goes fine in a system running 0.9.8g?
Does it have anything to do with ...
0
votes
2answers
89 views
Automating Self Sign Certificate IIS7 (possibly with appcmd)
I currently have a rake script which compiles, packages and deploys an ASP MVC web project. Currently I am tearing down and setting up IIS every time the build script is run, however I am now looking ...
1
vote
1answer
228 views
Python SSL server SSLSocket SSLError when accessing via Safari and Firefox
I'm writing a simple server for a class and there is a 'creative' component, so I want to add SSL to it. I'm trying to wrap the connection in an SSLSocket, but I get two different errors that I can't ...
1
vote
1answer
458 views
Java (Netty) SSL Server/Client with self-signed certificates throws fatal error: 80: pr0blem unwrapping net record
I seem not to be able to grasp they way SSL is working... or ar least I'm not able to interpret the ssl debugging output of java, so here's what I (plan to) do:
Client and Server generate their own ...
0
votes
2answers
190 views
how to ignore self signed certificate and supress peer not authenticated error
I'm trying to send a Https Post request to a server that is using a self signed certificate and i'm receving an exception with the error: peer not authenticated.
I googled and found that the cause of ...
0
votes
0answers
90 views
Protecting jar from tampering with self-signed certificate
I want to know if it is possible to verify the integrity of a jar file using a self-signed certificate. Would I be able to check the signatures against a keystore with the public key, if so how? I ...
0
votes
1answer
100 views
how to set up SSL for Apache for a Mac so I can test Cross Domain iFrame on IE8
I set up Apache on with the standard self-signed ssl mods to my http.conf, and this is working locally on my mac, but when I try to access it from my windows machine with IE8 it doesn't seem to like ...
1
vote
0answers
206 views
Allow self-signed certificates for HTTPS wrapper
Basically i have this:
function request($url) {
return file_get_contents($url, false, stream_context_create(array(
"ssl" => array(
"verify_peer" => true,
...
12
votes
3answers
2k views
How to create a self-signed certificate using C#?
I need to create a self-signed certificate (for local encryption - its not used to secure communications), using C#.
I've seen some implementations that use P/Invoke with Crypt32.dll, but they are ...
1
vote
1answer
217 views
Signed App cant install on low end tablet
Hi guys, I know most of people faced the problem same like me.
But I still cant solve this problems.
I had build android app and this app is using Google Map API and Google Places API.
I had signed my ...
-2
votes
1answer
72 views
Android - HTTP GET SELF SIGNED [duplicate]
Possible Duplicate:
How do I accept a self-signed certificate with a Java HttpsURLConnection?
I have set up a HTTP GET.
The code is as follows:
public class GetMethodEx {
public String ...
0
votes
1answer
134 views
Self sign SSL certificate for JBOSS with multiple domains
Is there any way to create a self sign SSL certificate for multiple domains? My environment is jboss-5.1.0.GA.
I already created a self sign SSL certificate for single domain using the following java ...
2
votes
1answer
1k views
How to make and deploy a self-signed ClickOnce manifest with Visual Studio 2012
Let's get this out of the way... I :
use Visual Studio 2012
develop VB.NET applications - mostly .NET framework 3.5, some 2.0.
use Windows 7 for development (users are also using ...
4
votes
1answer
342 views
Android kSOAP2 SSL self-signed certificates “Security Requirements not met - No Security header in message”
there is a problem connecting to the SSL WebServices Apache Tomcat, Java SE client connects fine, but the Android client does not want to connect and displays one of the following errors: 1. "Security ...
0
votes
1answer
343 views
How do I get browsers to trust self-signed certificates for testing? Website address is slightly different than fully qualified domain name
I have a website that is being configured with SSL, and I am using a self-signed certificate for testing purposes, for now. The machine is running Windows 2008 R2 with IIs 7.5 and Apache Tomcat 5.5. ...
0
votes
1answer
351 views
Java applet does not load in browser on Mac Lion from IIS SSL site with self-signed certificate
We've got an applet in our web application that is not running in our development/test site but works fine in our production site. The problem only happens when we are accessing the site from ...
0
votes
0answers
63 views
self-signed xml token validation, don't validate references
Following this tutorial, I wrote Java method, which validate self-signed Sharepoint XML token. It is token returned single sign-on application. Cryptographical verification returns TRUE, but ...
1
vote
1answer
181 views
how to get output variables from Deferred Custom Actions in WiX?
I am deploying a product that contains encrypted fields in some config xml files.
During installation, I am creating a Self-Signed Certificate on the target machine. Then I use it to encrypt some ...
0
votes
1answer
1k views
AJAX Requests to Self-Signed HTTPS Resources in Cordova/PhoneGap 2.1.0 Android Apps
I am trying to implement the workaround provided by Chris found here to allow a PhoneGap/Cordova-built Android app to make AJAX HTTPS requests to a server with a self-signed SSL certificate. I am ...
1
vote
1answer
416 views
Sql Server 2012 Self Signed Certificate
I have created a Self Signed Certificate and I am trying to start SQL Server 2012 with the certificate, it fails with error object of property not found. Service does not start at all.
But I removed ...
1
vote
1answer
318 views
Using Self Signed certificate in java
I want to connect to a sms gateway. I found the following code.
public void smsSender(String username, String password, String to,
String text) throws IOException {
try {
String ...
0
votes
2answers
343 views
IMAP open stream: Self signed certificate issue
I'm trying to open the non-secure (port 143) IMAP connection (I am using PHP):
imap_open('{localhost:143/imap}INBOX', USERNAME, PASS);
and I get the next error: Certificate failure for localhost: ...
0
votes
0answers
150 views
Self-signed certificate for servers hosting secure Facebook applications
We have a website, for which we have Self Signed Certificate available. We are posting our customized flash player to FB easily where secure browsing for FB is disabled by the end user. We need to ...
2
votes
1answer
167 views
Android application with SSL
I know that this particular topic was asked many times, but unfortunately in my case none of them are working. For past few days I was trying to get it to functional state, but I failed every time, so ...
0
votes
0answers
133 views
UIWebView to view video files using a self-signed ssl connection
I am trying to use a UIWebView to display a url video from a https:// url with a self-signed certificate. I have declared my viewController as a NSURLConnectionDelegate and UIWebViewDelegate. I have ...
0
votes
2answers
95 views
Why does a signed certicate give me a handshake failure using Java?
I am accessing a web service. When I go to the web service's URL in my browser, the certificate is signed and automatically is accepted.
What I don't understand is that when I use Java to access the ...
6
votes
1answer
310 views
Error when making SSL connection from Java client to .NET server
I am in the process of learning SSL and in this process I am attempting to create an SSL connection between a .NET server with a Java client. I use a self signed certificate for this purpose. I don't ...
0
votes
2answers
317 views
Will a self signed code-signing certificate get rid of “Unknown Publisher” warnings?
Will a self signed code-signing certificate get rid of "Unknown Publisher" warnings?
What will be the effect of using a self signed certificate with regards to warnings?
0
votes
0answers
99 views
How to support secure websocks in IOS UIWebview with self signed cert
I have a UIWebview and can connect to a https web server that has a self signed cert
using NSURLConnection delegates didReceiveAuthenticationChallenge and didReceiveResponse etc.
The Html page works ...
1
vote
0answers
126 views
SSL Connection from Java Client using self-signed cert
I need to use self-signed trusted certificate but having problems making connection from java client.
I have trust store set-up with the self-signed cert/pw.
Where I am having the issue is how to ...
0
votes
0answers
76 views
Why would a browser on Windows XP not use my client certificate?
I have a PC running Windows 7 and IIS 7. It has a self-signed SSL cert. If I browse to it using IE or Chrome by way of either https://localhost or https://machinename then it pops up a dialog box ...
1
vote
0answers
287 views
Self-signed Win32 DLL verify signature from C#
I have a partner, who has a private+public key generated with a linux openssl tool. He digitally (self) signs his win32 dll with the windows signtool.exe utility. In my C# program I must check if a ...


