Tagged Questions
4
votes
2answers
951 views
How does one set SSL ciphers when using CFSocket/CFStream in Cocoa?
I recently needed to configure CocoaHttpServer, which we're using in our application with success, to handle HTTPS connections coming from a client application (running on Android devices). This is ...
3
votes
4answers
445 views
How to specify a cipher for an SSL connection in .NET?
How can I specify a cipher suite to use in an SSL Connections?
I know that Mentalis Seclib got this feature however they don't maintain the project (and there are issues in that library with x64 ...
3
votes
1answer
2k views
Which Cipher Suites to enable for SSL Socket?
I'm using Java's SSLSocket to secure communications between a client and a server program. The server program also serves up HTTPS requests from web browsers.
According to "Beginning Cryptography ...
1
vote
2answers
85 views
What Defines Cipher Grades?
I've been searching for what exactly defines different encryption "cipher grades" - such as those used in SSL and TLS, but haven't been able to find a specific resource that draws the line between ...
1
vote
1answer
265 views
Disabling SSL Weak Ciphers with Play! Framework
Is there a way to disable weak and medium ciphers suites for https, with the standalone Play Framework server?
Couldn't find anything about it.
1
vote
1answer
1k views
What are the iOS supported SSL/TLS versions and ciphers?
I am developing an iPhone application, I am trying to find a list of supported SSL/TLS versions and ciphers for iOS. Is there a reference or a method I can call to get this answer? Also, if I can ...
1
vote
0answers
377 views
How to disable weak-ciphers on rmi port on Jboss 4.2.3GA?
I don't have any service connector port setting for rmi in file /deploy/jboss-web.deployer/server.xml. I have an mbean for org.jboss.invocation.jrmp.server.JRMPInvoker in /conf/jboss-service.xml in ...
1
vote
1answer
202 views
Decrypting data from a secure socket
I'm working on a server application in Java. I've successfully got past the handshake portion of the communication process, but how do I go about decrypting my input stream? Here is how I set up my ...
0
votes
1answer
197 views
How to control the SSL ciphers available to Tomcat
I'm unable to disable weak SSL ciphers in Tomcat as documented in many places e.g. http://www.techstacks.com/howto/secure-ssl-in-tomcat.html.
Currently, my connector looks as follows:
..Connector ...
0
votes
1answer
298 views
Java HTTPS connection with Custom CipherSuites
So let's say I try to connect to a web server over HTTPS using HttpsURLConnection. Now if I set/limit the ciphers on Client using:
System.setProperty("https.cipherSuites", myCustomCipherSuites);
I ...