Tagged Questions

4
votes
4answers
3k views

AES Encript and Decript problem with Apache Base64

I have following programme for encrypts a data. import java.security.Key; import javax.crypto.Cipher; import javax.crypto.spec.SecretKeySpec; import org.apache.commons.codec.binary.Base64; public ...
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
0answers
378 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
203 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
199 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
299 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 ...
0
votes
0answers
521 views

SFTP using JSch and GlobalScape

I'm trying to establish a SFTP connection using Java secure chanel (JSCh). My software stack is Red Hat Enterprise Server 5.0, JRE 6.0 and JSch v0.1.44. The primarily server software stack (to which ...
0
votes
1answer
309 views

Caesar Cipher over TCP connection Android

I am building this application in android using eclipse. I am building a program that takes a coded caesar cipher string and finds the number of shifts then sends back the decoded text. I have been ...
0
votes
1answer
102 views

Getting IllegalBlockSize when trying to encrypt too much data

Here are my constants //Encryption fields /** Algorithm=RSA Mode=ECB Padding=PKCS1Padding*/ public static final String ALGORITHM_MODE_PADDING = "RSA/ECB/PKCS1Padding"; /** Algorithm=RSA */ public ...
0
votes
2answers
494 views

Creating a shift cipher in Java

I want to create an applet where a user can enter a sentance then enter a shift and then the program incrypts the sentance using java. Any help? im new to java
0
votes
7answers
3k views

How to encrypt/decrypt a file in Java?

I am writing a Java application which can "encrypt" and consequently "decrypt" whatever binary file. I am just a beginner in the "cryptography" area so I would like to write a very simple ...
0
votes
2answers
1k views

Decrypting a file in Java and exporting it to a file without going into infinite loops?

How do you decrypt a file in java and export it to a file without having to end up in an infinite loop if you have more than one user and password. Here is my code and at the end is my test file: ...