Secure Sockets Layer (SSL) is a cryptographic protocol that provides communications security over the Internet. The more modern version of this protocol is Transport Layer Security (TLS), specified by the IETF in RFC 2246.
1
vote
0answers
5 views
How can I create a PSK connection between the Eclipse PAHO Java MQTT client and the Mosquitto broker?
I am trying to configure a Pre Shared Key encrypted connection between a mosquitto mqtt broker and an application written in Java which uses the Eclipse Paho client library.
I have successfully made ...
1
vote
0answers
7 views
Android SSL usage: key input stream from UI thread to background thread
I have a design question on android SSL socket usage. To be able to initialize a secure socket, I need to be able to access the key input stream from a background thread to initialize the session ...
0
votes
0answers
5 views
SSL offloading redirect to https
How do you tell the load balancer to redirect from a http request to a https request?
I have a .net app which will redirect visitors to SSL if they visit certain pages.
0
votes
0answers
6 views
SSL Client Authentication Issue between WebSphere and GlassFish servers
I have an issue connecting to a GlassFish server (external party) from WebSphere (our server) when using SSL Mutual Authentication.
It looks like the SSL negotiation has succeeded but then one side ...
1
vote
0answers
14 views
SSL 256 bit encryption - on Azure website
With reference to the recent custom SSL provision for Azure website on the reserved instance - how can I enforce 256-bit encryption? All I see is the 128 bit using RC4_128. I want to ensure users ...
1
vote
1answer
9 views
Heroku SSL Endpoint - “No Such App”
Any ideas why I might be getting the "No Such App" error when I go to my herokussl.com URL (after adding a cert and Heroku SSL endpoint)?
I followed the instructions here ...
0
votes
0answers
12 views
Boost ASIO + SSL + strands
Your semi-recent question was really helpful for me and my secure WebSocket implementation. I had the same architecture for my server -- a mutex which was acquired in all handlers as well as in ...
0
votes
0answers
3 views
SSL handshake on .Net client
I am new to SSL Client Server Handshake. My requirement is to connect to a third party webservice which is written in java. I am writing a .Net Client to connect to the webservice. The client is ...
0
votes
0answers
7 views
SSL3 POST with Python
I have a pile of tasks to automate within cPanel. There is a cPanel API described at http://videos.cpanel.net/cpanel-api-automation/ but I tried what I thought was easier for me...
Based on an answer ...
0
votes
1answer
14 views
How i can create a self-signed certificate using phpseclib
How i can create a self-signed certificate using phpseclib from a existing .csr file, only i can use a .csr file.
I've read the manual and the method use a private key, but in my assignment i only ...
1
vote
0answers
16 views
https based url not working in fcokopen with proxy
I cant load https based urls in fsockopen with proxy but i can load https without proxy .
$fp = fsockopen($proxyHost ? $scheme.$proxyHost : $scheme.$host, $proxyPort ? $proxyPort : $port, $errno, ...
-1
votes
0answers
7 views
SSL: Combining multi-domain and wildcard certificate for securing websites [closed]
We need to combine a multi-domain and a wildcard-certificate on the same server, that is we need to secure *.myfirstdomain.com and www.myseconddomain.com. Note that simply listing all subdomains of ...
0
votes
0answers
10 views
How do i create and SSLSocket by inserting the IP address and NOT the host name?
SSLSocket socket = (SSLSocket) factory.createSocket("IP Address", 443);
When i put the IP address instead of the host name it stays inside the function. How can i create the socket using the IP ...
0
votes
0answers
18 views
SSL Error in Twython GET
I am playing with the twython and requests packages and found something strange which is blocking my code to retrive the tweets. I am working behind the firewall if it helps.
Code:
from twython ...
0
votes
0answers
13 views
javax.net.ssl.SSLHandshakeException: Received fatal alert: certificate_unknown
I want to establish a secure channel between a client and server using Java SSL session.
I followed the following link http://www.herongyang.com/JDK/ssl_https.html to establish the connection
after I ...