-1
votes
1answer
20 views

Convert DES encryption code in Java to PHP [closed]

I'm trying to convert following DES encryption code from Java to PHP but I'm not able to reproduce exact same encrypted string. Can someone please help me convert this code from Java to PHP. private ...
-6
votes
1answer
74 views

How to replace several characters on a single string to desired characters (java)?

I made my own way of encryption. now i need to get that encryption to an android app. Can somebody tell me, if you have a message (string) how to replace it's characters to desired characters. For ...
0
votes
2answers
24 views

how to get rid of zeros in PKCS7Padding

I am trying to remove the zeros from the padding. I would like to remove the zeros without having to use a for loop, so how would I remove the zeros from the padding? Here is the ...
2
votes
2answers
59 views

Python Blowfish Encryption

I am struggling due to my incomplete knowledge of Java to convert this encryption code to Python code. The two should have the exact same results. Help would be greatly appreciated. Java Function ...
0
votes
0answers
35 views

Creating cipher key from random text on Android [duplicate]

I'm having a little problem. In my app I need to create a key for AES encryption from String written by a user, and I have no idea how to do it. For example: user writes: "abscde" and I need to some ...
-2
votes
0answers
18 views

Convert vb.net crypto to java [closed]

I'm trying to take vb code that creates an IV and convert it to java. Newcomer to crypto functions. Receiving error java.security.InvalidAlgorithmParameterException: Wrong IV length: must be 8 ...
0
votes
1answer
54 views

AES Performance in java

Why the first call of of encryption take hundred time of the second one byte[] key = //... secret sequence of bytes byte[] dataToSend = ... Here's my encryption method: public static byte[] ...
-1
votes
1answer
43 views

how source code to combine plaintext + key into ciphertext + key in java using aes algorithm? [closed]

how source code to combine plaintext + key into ciphertext + key in java using aes algorithm? I'm developing an sms application with a security system using cryptographic algorithm aes. but I get the ...
0
votes
0answers
21 views

Unable to create SQLCipher Database with Password

I been trying for few hours just to create a simple database with password.. Here's the code. //Activity 1 SQLiteDatabase.loadLibs(this); dbPasswordHelper2 = new ...
0
votes
0answers
16 views

encrypt TLS RSA WITH RC4 128_SHA

Hello I'm trying to write some code for encrypt a string or a file with TLS_RSA_WITH_RC4_128_SHA(0x5) protocol. But I just found examples and references about other protocols. Did someone know some ...
0
votes
1answer
79 views

Can somebody tell me what is wrong with my encryption code? [closed]

My code is supposed to get the text from a text document and encrypt it by incrementing each character by 1. I want the output to be: q b t t x (the encryption of passw.) But instead it just outputs: ...
-3
votes
1answer
54 views

getChar to a char variable for encryption [closed]

I have some basic code here to encrypt a text file. I want to increment each character in the text file by one, possibly something different in the future. But I can't figure out how to set the array ...
0
votes
2answers
33 views

encrypt/decrypt java class and implment and deploy in tomcat with custom class loader

I have a application war bundled with class files which we deploy into tomcat. I will be deploying the application at client location server where different people will have access to it. I want the ...
0
votes
2answers
72 views

How do I decrypt and encrypt Joomla user password for Java program?

I have programed a Java program which has access to my MySQL database. Currently I am using Joomla as CMS, therefore I would like to program my Java program so it is able to check the user data(of ...
0
votes
0answers
37 views

How to verify a file signed with signapk.jar in java under android

I'm using signapk.jar to sign a tbz file with my own key file, like this: java -Xms2048m -Xmx2048m -jar ${root_path}/android/out/host/linux-x86/framework/signapk.jar -w ...
2
votes
1answer
34 views

Custom ClassLoader uses secret key to decrypt pre-encrypted class files (which had been encrypted with the secret key)

How can you protect/encrypt your Java classes? I've been reading some articles on java.lang.ClassLoader and one PDF article Understanding the Java ClassLoader suggested that I could use a custom ...
-1
votes
0answers
41 views

Why does this simple java encryption program not work? RESOLVED [closed]

EDIT: The code works now with no changes. Bizarre. I am currently working my way through Stanford's CS106A Programming Methodology class and have just passed a lesson during which the teacher ...
1
vote
2answers
33 views

How to convert public key and signature value in human readable format

I am trying to generate public key and signature in readable format which can be used in rest service .i have write following code . public static void GenearetSignature(String url,String ...
0
votes
4answers
69 views

Generate Same Salt everytime for Same String value

I need to add a salt to a hashed column. This hashed column is also used as an index in one of the tables. I don't want to use the same hard coded salt for all values for obvious reasons. What can ...
0
votes
1answer
67 views

XOR Crypt with Linux & Windows different

currently I'm programming a chat with XOR-Encryption. But today i encountered a problem. The encryption is under Windows different as in Linux. Under Linux the chat runs normally, but under Windows ...
0
votes
1answer
71 views

Encrypt in Java using 3DES, decrypt in SQL Oracle

I'm new to SQL and Java and working on a project encrypting data in Java, sending it and decrypting it in an SQL oracle database. I'm using 3DES, salting and sending a MAC with the encrypted string ...
0
votes
1answer
46 views

File decryption error with RSA algorithm? [duplicate]

I have a given encrypted text and I want to decrypt it with given private key file. I wrote this code ObjectInputStream inputStream = new ObjectInputStream( new FileInputStream( PRIVATE_KEY_FILE ) ...
1
vote
1answer
23 views

MySQL SHA256 and Java MessageDigest SHA-256 don't match

I've been trying to encrypt some user passwords on a project but I can't seem to get it working properly. I've decided to use the SHA-256 algorithm and when I introduce a password to MySQL using the ...
0
votes
1answer
36 views

Jasypt EncryptionOperationNotPossibleException

A few days ago, I asked a question regarding a problem I had with Jasypt. I referenced a larger program throwing the EncryptionOperationNotPossibleException. Well, I still can't figure out the ...
0
votes
1answer
45 views

Java: Bad Padding Exception in RSA

I am running the following code I am getting a Bad Padding Exception - Data must start with zero. Any ideas? Here is the code public class test { public static void main(String[] args) throws ...
0
votes
1answer
76 views

how to decrypt encrypted text using pbkdf2

I am trying to decrypt an encrypted text. I have the salt value, iteration count and key length. But i don't have the IV value, how can i go about and decrypt this. I also have secret key. ...
-1
votes
2answers
58 views

Password-based encryption fails when salt value changed [closed]

Below code uses PBE algorithm, I understand SALT array is used to add few bytes to the password provided. But when I tried to remove few elements from that array and when I run the program its giving ...
1
vote
1answer
19 views

Jasypt doesn't want to decrypt strings

I'm writing a program in Java that requires strings to be encrypted and decrypted. I'm using BasicTextEnctyptor from Jasypt. This is a complex application - using asynchronous networking and things ...
-4
votes
0answers
32 views

How to stop my directories becoming encrypted when I copy files [closed]

I am trying to create an application that copy's the files that match a search quire to another directory, and if that directory dose not exist create the directory. The problem I am having is that ...
-1
votes
0answers
36 views

Decrypting Cyrillic characters returns wrong values? [closed]

I am trying to encrypt and decrypt a string containing Cyrillic characters but I found that the five characters "с”́яэ" are not properly encrypted (after decryption I am getting "?Կ??") but rest of ...
-3
votes
0answers
44 views

How can I convert this code to use AES instead of DES? [closed]

I'd like to convert this code to use AES. The code is used to encrypt an object that is stored to a file. Any suggestions (code examples) of how I can go about it? byte key[] = "somePass".getBytes(); ...
3
votes
1answer
39 views

Hibernate - Store a column as encrypted, and decrypt only on runtime

I have a database column that needs to be encrypted, when passed from a hibernate backed webapp. The webapp is on tomcat 6, Hibernate 4, and Mysql as the backing store. The problem however is that ...
1
vote
1answer
61 views

Java File Encryption

I'm trying to write a simple program to encrypt and decrypt files using the AES algortihm. I haven't problems with encryption, but decryption.. public static void main(String[] args) throws ...
0
votes
0answers
24 views

Key properties file for digital signature - java

I'm trying to sign a pdf file with a digital signature and to do this it's needed the data encryption. I have to use a file that contains the encryption key properties to achieve this, but I really ...
1
vote
1answer
48 views

Decrypt string in java which in encrypted in android app

I am using this class to encrypt a string in android app public class Encryption { public static String encrypt(String seed, String cleartext) throws Exception { byte[] rawKey = ...
0
votes
0answers
11 views

Use BouncyCastleProvider in EJB 3.1 App in Glassfish

I'm playing around with some encryption topics in Java. My Question is: Where should i load BouncyCastle Provider in my App? I'm very new to the whole EJB Java stuff. This is my setup/technologies ...
-1
votes
0answers
60 views

C# to Java - Is this implementation correct? [closed]

I've got a C# code and would like to convert it to Java. C# Code is the following: List<short> collectedshortList = new List<short>(); // fill collectedshortList with a few short values ...
0
votes
1answer
26 views

Java: Can an encrypted UID embedded on a web page be effective?

My boss wants me to adapt a Java webapp to effectively disable the ability to navigate within the Java webapp by typing URLs into the location bar. I've come up with a couple of strategies to make ...
2
votes
1answer
73 views

AES256 vs 3DES 256 key detection

How would I be able to determine the encryption of a key (AES256 or 3DES 256)...Since both keys will be 32 characters (8 bits per char * 32 char)=256 bits and Mime encoded. Example ...
-1
votes
1answer
44 views

JAVA AES 256 & Public Key Encryption [closed]

One of our customers requires us to encrypt a message return from our web service using AES 256 & Public Key Encryption Server Side (web service) is java based. Client side could be java or .Net. ...
0
votes
1answer
42 views

Run jar in a java apllication ( pdfbox )

I'm programming an application in java that stores data and images to a pdf. I'm using pdfbox. I saw that pdf box has some jar like the one for data encryption that has to be run by command lines. Is ...
0
votes
0answers
13 views

PKCS5S2ParametersGenerator.generateDerivedMacParameters very slow in Android app

I am writing some encryption code to AES256/CBC/PKCS5 standard which needs to be read by .Net and iOs, hence the standards. I found the library spongycastle and used the code below to generate the key ...
0
votes
1answer
37 views

How to do WSSE Authentication implementation in android java according to php part within webserver?

I use symfony2 for web server and use wsse authentication with x-wsse header. The question actually is about which exact functions I should use in Java to give the same result as in php. php part for ...
0
votes
1answer
55 views

javax.crypto.BadPaddingException in clojure file encryption program

First, let me say I am very new to clojure, and has been some time since I did a great deal with java or the jvm too. I am getting a javax.crypto.BadPaddingException when I try to decrypt a file that ...
0
votes
1answer
41 views

How to import and use Jasypt - Java Library

I'm trying to use "Jasypt" in my Java project, but I'm having some troubles. I'm using NetBeans IDE. I download this file, then I right clicked on my project -> Properties -> Library -> Add ...
-1
votes
0answers
41 views

How to increase encrypted data length by AES algorithm

I generated encrypted data by using AES. Its only 24 character.Can anyone pls tell me how to increase the encryped data length. Code : public static void main(String [] args) throws Exception{ ...
1
vote
0answers
51 views

Encrypt in SQLServer 2005, decrypt in Java

I'm trying to find a way to encrypt a column in SQLServer 2005, with an algorithm easily decryptable from Java. From this page I see encryption by passphrase uses 3DES, but there's no other ...
0
votes
2answers
100 views

How to get IV for decryption in Java?

I need to encrypt / decrypt a username field and I was planning to use the code below: public class Decrypter { Cipher dcipher; byte[] salt = new String("12345678").getBytes(); int ...
0
votes
0answers
43 views

Where I can find android source code for vigenere cipher? [closed]

I want to encrypt and decrypt my messages using vigenere cipher. So Im trying to make it in android. Is there anyone can tell me where I can find the code?. Cause i'm a newbie in android. Thank you ...
1
vote
1answer
40 views

Java JCE Encrypt Folders?

Is it possible to encrypt entire folders with Java's JCE library. The folders will contain other folders/files if that is a problem. For those who don't know what JCE is, it stands for Java ...

1 2 3 4 5 28