Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

53
votes
7answers
43k views

Best way to use PHP to encrypt and decrypt?

I plan to store foreign account information for my users on my website, aka rapidshare username and passwords, etc... I want to keep information secure, but i know that if i md5 their information, i ...
31
votes
11answers
86k views

Encrypt/Decrypt string in .NET

Can someone give me the code to Encrypt and Decrypt a string in C#? I'm trying to do this with TripleDES but that is not a requirement.
21
votes
4answers
59k views

How to decrypt an encrypted Apple iTunes iPhone backup?

I've been asked by a number of unfortunate iPhone users to help them restore data from their iTunes backups. This is easy when they are unencrypted, but not when they are encrypted, whether or not the ...
6
votes
4answers
1k views

How to encrypt data in javascript and decrypt in php?

Is there any javascript function that can encrypt data: For example i want to use encrypted data in my URL passed by ajax GET request, http://sample.com/mypage/TDjsavbuydksabjcbhgy where ...
5
votes
1answer
1k views

Decrypting an 'Encrypted' password from ASP.NET 2.0 Membership

I have a requirement to decrypt the Encrypted (not Hashed) passwords located in my aspnet_Membership table. In that database I see the Password (Encrypted) and PasswordSalt fields, and I can look at ...
4
votes
3answers
340 views

PHP Encrypt Data, Bash Decrypt it

I am trying to come up with a way to have PHP encrypt a file. I used to just use a PHP system call to run a script that encoded the file: #!/bin/sh /usr/bin/openssl aes-256-cbc -a -salt -k $1 -in $2 ...
4
votes
1answer
157 views

Does jar file change the contents of an encoded text file, when we reimport it?

I have a Java application where I need to protect contents in a text file before it is exported in a jar file. So I encode the file using BlowFish algorithm provided by "javax.crypto.Cipher". And I ...
4
votes
3answers
6k views

encrypt- decrypt with AES using C/C++

How can I encrypt decrypt a file with a 256 key AES in c or c++? Which library do you suggest? Thank you!
4
votes
1answer
181 views

How to Protect Sensible Passwords stored in a Database

I'm developing a web application for which final users have to create an account. This part is very easy: I'll hash their passwords with SHA-256 so that nobody, except the user himself, knows the ...
4
votes
1answer
688 views

Cannot decrypt data with C# that was encrypted using PHP (Rijdael-128)

I decrypt data using PHP with this code: $content="1234"; $cp = mcrypt_module_open('rijndael-128', '', 'cbc', ''); $iv = mcrypt_create_iv(16, MCRYPT_RAND); $key = pack("H*",md5('a')); ...
4
votes
1answer
1k views

BouncyCastle Last Byte Decrypt Problem

I am decrypting an XML file from the file system using Bouncy Castle. I output the decrypted text and get a fatal error SAXParseException on the very last byte of data. Below is my decryption method ...
3
votes
3answers
75 views

Decrypt AES encrypted file in java

I have a file encrypted with java application using AES. I also have a key file was encrypted with. But i can't understand how to use the key to decrypt file. Most tutorials and examples create ...
3
votes
3answers
181 views

Decrypting an encrypted password from ASP.NET Membership using RijndaelManaged

The bottom line is to create a custom FTP Authentication Provider. In order to do this one must inherit from IFtpAuthenticationProvider interface and then register that assembly in GAC. After that the ...
3
votes
3answers
113 views

Why doesn't my encryption work after I upgrade beyond Delphi 2007?

I recently took some code from Delphi 2007 and upgraded it to Delphi 2009. That may or may not be relevant. But when I run the code on my computer the decryption of the password is not decrypting ...
3
votes
3answers
544 views

Convert C# code to PHP

private static readonly byte[] IV = new byte[8] { 240, 3, 45, 29, 0, 76, 173, 59 }; public string Decrypt(string encryptedData,string key) { encryptedData = HttpUtility.UrlDecode(encryptedData); ...
2
votes
2answers
35 views

SQL Server User create script Password description

Below is my create script of user CREATE LOGIN [sa] WITH PASSWORD=N'ô/PDM643¸}''8%õ''f;âw¡ÈS' Can you tell me this password please?
2
votes
1answer
51 views

Dynamically Decrypt a Referenced dll

I want to have a referenced dll in my Windows Forms Application project. It is imperative to me that the dll is encrypted at first, and later decrypted on runtime when it needs to be used. Please ...
2
votes
1answer
104 views

Decrypt string with AES Cipher Block Chaining in Rails

I am having to implement a payment gateway in Rails that I've not worked with or seen before (Westpac's Payway in Australia if anyone is interested). Their documentation isn't bad and the system is ...
2
votes
4answers
203 views

AES encryption/decryption between C# (encryption) and Java (decryption)

I have a C# application to calls a Java web service to validate a user's password. I'd like to have the C# application encrypt the password and then have the Java web service decrypt the password. I ...
2
votes
1answer
60 views

Is there a way to encrypt passwords in Ruby Watir automation scripts?

I need to create an automated test using Watir that requires a password to be written into a text field, but I don't want to have the password in plain view in the script. Is there a way to ...
2
votes
4answers
550 views

XOR File Decryption

So I have this assignment for college where I have to decrypt a .txt file that is crypted with XOR code and with a repeated password that is unknown, and the goal is to discover the message. Here are ...
2
votes
1answer
318 views

How to encrypt video from url and save encrypted video to device's SD Card

In my application I have to use of many video files. Approximately total size of all the video is 500 MB. So I have to decide at the first time when application is install and run at that tike I ...
2
votes
3answers
88 views

How to secure my data?

I offer a bunch of clients back of their cPanel account. This is done by using FTP - they transfer the backups to an unique FTP account on my server, using the built-in backup function. However, all ...
2
votes
2answers
350 views

MS Access to MySQL Linked Table via ODBC >> Is there any way to decrypt columns

I have a MS Access Frontend to a MySQL DB via a linked table this was working well but recently implemented MySQL encryption for a new security concern. Do you guys know any way to decrypt the ...
2
votes
5answers
251 views

Is it possible to add a “Master” password for an encrypt/decrypt program?

I've written an encryption program that encrypts and decrypts selected files using a user-entered password as the encryption key. Once en/decrypted, the user will be asked if they want to delete the ...
2
votes
1answer
540 views

Decrypt AES128-encrypted data

I am trying to decrypt the data from last couple of days. I decrypt the data but the result is not same as original. Please, can anyone suggest how I can do this. I am trying to decrypt the following ...
2
votes
2answers
289 views

Encrypt in PHP not working as expected

I have a very silly situation, i am receiving an encrypted string from VB.NET in PHP. I am able to decrypt the key. But when i want to encrypt the result and get the encrtypted string i get a ...
2
votes
3answers
746 views

Encrypt in JSP, Decrypt in PHP

I'm trying to implement a single-sign-on link from application written in JAVA, to another web app written in PHP. I'd like a way to encrypt the username in .JSP and then decrypt in PHP. I need to ...
1
vote
1answer
53 views

c# reading data from an encrypted xml file

For a scoreboard, i store the scores in an xml file. (WPF application) Of course, i dont want a user to just edit that xml file, so i was looking for a way to encrypt the xml file. this works trough ...
1
vote
2answers
54 views

Encrypt / Decrypt a 10 digit number

I'm new to data encryption, and currently researching on encrypting a 10 digit number with (16bit / 32bit) encryption method. The constraint that i have is that the encrypted value can be a-z A-Z 0-9 ...
1
vote
0answers
27 views

HSQLDB: opening corrupted encrypted database

Customer sent me hsqldb database which he was unable to open neither with sql-tools nor with application database was created with. Exception thrown when trying to open looks like this: ...
1
vote
1answer
47 views

RSA Decryption Issue C#

RSA Decryption Issue I am having problems with a C# RSA program. It is not decrypting properly. When I assign d =(e^-1)%phiN, and then apply d to my ciphertext it comes up with ridiculous decimal ...
1
vote
0answers
32 views

3des implementation for blackberry [closed]

I want to encrypt some data with 3des and want to push them to the webserver via webservice. I have used 3DES Code from this link. But it is not working. So please help me. Give the suggestion to ...
1
vote
1answer
56 views

Coldfusion 9 decrypt large block of data?

I am getting an error when my data to decrypt is over 63973 string length. here is the code involved: I set the static key and other values in a separate include file, cfencode obfuscated, located ...
1
vote
1answer
81 views

Can't Decrypt Data

I need to decrypt data stored in a mysql database. It worked in my tests, but now that it's live and users are submitting data, the output data does not decrypt into anything readable. function ...
1
vote
0answers
36 views

Rails decrypt attributes and search

I need a type of encryption in rails that is also searchable. That is (im assuming the following is a solution) I need something like bcrypt that allows the following to be true. encrypted == ...
1
vote
1answer
44 views

Rails decrypt and search

In rails, it is necessary for me that when i store items into my database i encrypt all data first. When i search the data what i am planning to do is decrypting some of the data to make it ...
1
vote
1answer
147 views

Encrypt Decrypt my own key not generated java

I am new to cryptography, so I have a question: How can I create my own key (let`s say like a string "1234"). Because I need to encrypt a string with a key (defined by me), save the encrypted string ...
1
vote
1answer
114 views

encrypting/ decrypting strings to text

I am creating an app that would allow people to share sensitive info with each other via the iphone sms app. I want to make use of the security framework that apple provides, using keys that the ...
1
vote
1answer
170 views

SOLVED - Java Android - Decrypted byte array 255 bytes long instead of “Hello World!”.length

I'm reading a lot since some weeks to implement an encrypt/decrypt algoritm for my Android application. I'm implementing a license key that is downloaded from my website and stored in the external ...
1
vote
5answers
129 views

Encrypt Digit C++

So I am trying to encrypt a four digit integer by adding seven to the digit then dividing the whole digit by ten. In my program I am taking each single digit separately and then I need to divide the ...
1
vote
2answers
123 views

Format-preserving Encryption sample

I want to encrypt/decrypt digits into string (with only digits and/or upper characters) with the same length using Format-preserving Encryption. But I don't find implementation steps. So, can anyone ...
1
vote
1answer
70 views

InvalidKeyException: Cannot decrypt OpenJDK/JRE-encryted string with Sun JRE

I encrypted and stored some data to a db using the OpenJDK JRE and also successfully decrypted with OpenJDK when retrieving back from db. Today I replaced the OpenJDK JRE with Sun's JRE and now I get ...
1
vote
2answers
165 views

Encrypt an integer to get only numeric characters in JAVA

I have a database id that start from 1 to ... and I need encrypt this number to use for pursuit number. how to generate numeric string by encrypting the database id and decrypt it? pursuit number must ...
1
vote
2answers
79 views

Decryption problem using RSA

I have following steps to perform for decryption base64 decode the response Decrypt the first 128 bytes with the RSA1024 public key. Key is in base64 encoded X509 format with PKCS1 padding. My ...
1
vote
1answer
92 views

How to encrypt/decrypt the url in J2ME app?

My application need to connect to critical data on our server, and i want to encrypt the link to the server, so, How could I do that? Thanks a lot in advance,
1
vote
1answer
169 views

Decryptor for bcrypt

The title is pretty self explanatory. I'm not sure if this exists, as it would greatly compromise the security of bcrypt, but i'm using Devise in a rails app and forgot my password. However I can ...
1
vote
1answer
222 views

How do decrypt a signed pgp enccrypted file using the BouncyCastle java API?

The following link shows how to create and verify files but it does not show how to decrypt them: ...
1
vote
2answers
314 views

Decrypt image using AES Algorithm with password

hi guys could any one tell me how i can decrypt a image with password using the AES Algorithm.The Image has been encrypted in the iphone with some password. Thanks in advance Edit #1 The thing is ...
1
vote
3answers
227 views

How to provide password to sqlite3.exe?

I have a sqlite database that I want to open using sqlite3.exe. Now I get an error when I try to make queries, saying "file is encrypted or is not a database". This may seem stupid but I've been ...

1 2 3 4