ssl

How do I use a Maven 2 repository protected using SSL and a wildcard/self-signed certificate?

I am trying to use a Maven 2 repository via SSL secured with a self-signed certificate. I followed the instructions at HTTPS and Self-Signed Certificates in Java but I doesn't to work. I think its because the certificate is a wild-card certificate. So I wonder if I should be doing something different to import the wild-card certificate?...

Generate certificates, public and private keys with Java

Hi, i'm looking for a java library or code to generate certificates, public and private keys on the fly without to use third party programs (such as openssl). I think something that is doeing keytool+openssl but from Java code. Consider a java servlet based web application secured with ssl and client authentification. I want the se...

Are the query string variables visible using a Response.Redirect between two Https pages?

I'm looking at a web application with a Response.Redirect between two Https pages. I would assume normally that the query string parameters aren't visible for https requests because of the secure connection. However, since the Response.Redirect sends back the 302 - Object Moved response in between the two pages along with query string va...

TLS/SSL in .net

Hi there! Is there any (hopefully free/open source) code available that does native TLS/SSL communication? I do not speak about the HTTPListener/Client and WebRequest classes. I'd like to do raw TLS communication in my C# code. Thanks in advance, Max ...

How to use NSURLConnection to connect with SSL for an untrusted cert?

I have the following simple code to connect to a SSL webpage NSMutableURLRequest *urlRequest=[NSMutableURLRequest requestWithURL:url]; [ NSURLConnection sendSynchronousRequest: urlRequest returningResponse: nil error: &error ]; Except it gives an error if the cert is a self signed one Error Domain=NSURLErrorDomain Code=-1202 UserInfo=...

Is it possible to use https (own-server) without paying anything?

I want to use SSL (https) to secure communication. Is it possible to do it without buying a certificate of some sort? ...

Simple client/server, TCP/IP encrypting the message stream, SSL

Hi, Writing a little TCP/IP client server app. Basically it creates a server, and then you can create several different clients and set up a bit of a chat session. What I am wondering is there is any way to incorporate, using standard .net libraries some form of encryption? m_mainSocket = new Socket(AddressFamily.InterNetwork, ...

Redirect loop during http:// to https:// redirect

I am trying to force a page to be run under SSL, so I have implemented the following on page_load: if (!Request.IsLocal && !Request.IsSecureConnection) { Response.Redirect(Helper.GetInstance().SSLBaseURL() + ScriptName()); } For some reason this is ending up in a loop. Earlier today, I checked Request.Uri....

Symmetric encryption key vs. Asymmetric keys - ssl

I am developing a client server app that uses ssl (openssl) to establish a secure communication channel between the client and the server. I believe I have two options now for secure data transfer between the client and the server. One option is to continue with the data transfer on the established secure ssl channel between the client a...

Mirth: calling an SSL SOAP web service with a client certificate

The scenario is around calling an external SSL SOAP web service from within Mirth. The web service is requires an SSL/TLS connection along with a client certificate. The intention is to use the built-in SOAP Sender Destination to call the remote secure web service, and somehow include that client certificate. I understand that you fir...

Apache 2 authentication error

Attempting to implement client authentication with an SSL cert, according to this HOWTO, I receive the following errors. Apache: Re-negotiation handshake failed: Not accepted by client!? Firefox: ssl_error_handshake_failure_alert I assume it is a configuration error, but have not been able to locate it. Additional info: Com...

Detect PKCS#11 token to be inserted/removed in JAVA

I'm using a PKCS#11 usb device to create a SSLContext. The project is migrating from an IAIK jce implementation to sun's, iaik provide a tokenmanager to detect when the token is removed, inserted, could not find a way to do this with sun implementation. Any ideas? ...

How to send an HTTPS GET Request in C#

Related: how-do-i-use-webrequest-to-access-an-ssl-encrypted-site-using-https How to send an HTTPS GET Request in C#? ...

How to SSL enable SharePoint

What is the best way to SSL enable a SharePoint farm? I'm thinking ISA, but so far I'm having issues with document libraries and other erratic things. Can anyone describe a checklist or some best practices in enabling SSL on a SharePoint farm? ...

C# Web Service via SSL vs Firewall

We allow users to dial-in to our system. We run a firewall on the dial-in system that blocks all access by default and we only allow certain servers to be accessed by adding specific rules. We have a web service that contacts our server. The service calls are made over SSL. The SSL Cert is from GoDaddy. We have found that when conne...

HttpWebRequest over SSL with client credentials

I'm trying to use HttpWebRequest to get an https URI that requires a username and password. If I put the URI into a browser it pops up a dialog asking for credentials and then works. Using HttpWebRequest gives me a 401 Unauthorized error. The documentation for NetworkCredentials says it doesn't support SSL, but I can't find what I'm sup...

Screen scraping over SSL with .NET

What solutions exist for screen scraping a site over SSL for use with .NET? My use case is that I need to login to a partner website (https), navigate through a dynamic hierarchy, and download a zipped file of reports. I certainly could use other screen scrapers if there are no good viable options in .NET, either though the framework o...

How secure is SSL?

I am just wondering, how secure is SSL? As in, how much will it take to crack a password sent though SSL? ...

Indy "Could not load SSL Library" with Delphi 2007/Apache

I know this question has been asked a number of times. I seem to have a bit of a different problem. In my situation after the exception is thrown initially it works fine (and no; I did not turn off exceptions). So what I have done is on the exception I simply repost: IdHTTP1.Post(....... I have put the libeay32.dll and ssleay32.dll ...

From http to Https Service Call

hi, is there a way for some one to sneak in the to see data if my service is over http and the caller in my case is hosted on http (i.e. service is on secure ssl host while caller is on simple http). is that call secure or not? ...