Encryption is the process of transforming information (called plaintext) using an algorithm (called cipher) to make it unreadable to anyone except those with special knowledge (often called a key). Conceptual questions about encryption may get better answers on crypto.stackexchange.com.
1
vote
0answers
99 views
Encrypt the images in resource folder +IOS SDK
Anyone knows how to encrypt images in the resource folder? Is there any encryption algorithms for doing so? I'm using an in-app purchase application and some images can be seen only after purchasing ...
1
vote
0answers
135 views
PHP Decryption of Rijndael 256 from .NET
I am getting a base64 encoded Token from a .NET Website and wish to decode it in PHP. I received the Key and the IV from the programmer but I can't get the decryption to work. I read a lot about ...
1
vote
0answers
69 views
Is there any point where RTMFP's overall 128-bit encryption for stream turns into 256-bit encryption?
This is very similar to another question I'm asking, but still a little different. Both questions are attacking the same problem, and I really just need one or the other answered:
How can you make ...
1
vote
0answers
36 views
Encryption By Certificate
I am encrypting customer name in database at database level. While saving in database only first letter of customer name is saved and hence while decrypting only first letter is retrieved.
The ...
1
vote
0answers
142 views
android, ios and php encryption/decryption
I am developing a mobile application in android and ios which needs to communicate with a server in php.I need to make sure that the communication is secure. I know that I can use ssl but I don't ...
1
vote
0answers
206 views
Encrypting of XML File
I want to encrypt an XML File. I took the help of the following code:
MSDN Page Link
Now the problem is coming when the encrypt function is called. After all the values have been inserted into the ...
1
vote
0answers
128 views
encrypt with mcrypt in ecb mode in c
I'm trying to encrypt a long char array with libmcrypt in c. I have a problem after I call my encrypt funktion more then 5 times. I can't see the mistake, but I'm getting strange output. If I have a ...
1
vote
0answers
154 views
Safely generated encryption key from user's password?
I'm building a Django website with MySQL. I've already decided to use Django's built in pbkdf2-sha256 with randomly generated salt hash to store a user's password.
However this website will also need ...
1
vote
0answers
280 views
Java RSA Encrypt As like C# Dot Net
I have used RSA Assymetric Key Encryption Algorithm in C# program (I have mentioned below) and I have to encrypt data through a java program.I want my java program to generate same encrypted key as ...
1
vote
0answers
71 views
error when trying to decrypt email address in vb
I am trying to decrypt email address in VB.NET but I am getting an error: "Invalid length for a Base-64 char array."
email address which gives error: abcadmin@googlemail.com
email address which ...
1
vote
0answers
159 views
php decrypting base64Encoding text from iOS
I have spent a huge amount of time with no success trying to decrypt an encrypted string ("yIH7EYW0e4HuxkHApkG7xQ==") on the PHP server side. The string was encrypted on iOS platform and encoded into ...
1
vote
0answers
1k views
Difference between PKCS1-padding/RSA encryption ios objc and java
I’m developing a application for ios and android. I’m relatively new to crypto tasks and for the last 3 Days I keep banging my head against the wall because I’m not able to get RSA encryption running. ...
1
vote
0answers
122 views
How to use encrypted password in peantho kettle transformations
Any pointers on how can we use encrypted passwords in kettle transformations.
1
vote
0answers
337 views
bad decrypt error in ruby
While executing the cipher.final, It says bad decrypt error. I tried to find out the problem.But,I can't find . Can you tell what is wrong with my code?
Here is my code:
require 'openssl'
require ...
1
vote
0answers
121 views
Correct decryption returns empty string
I am trying to decrypt some data that I have stored in my db.
Can someone tell me what i'm doing wrong here?
I have checked and rechecked all the values that I am passing in and seem to be ...
1
vote
0answers
264 views
Debugging C++ AES Encryption Wrapper Class
I need to add AES encryption functionality to my C++ project. So far I am trying to write a wrapper class for Code project: C++ Implementation of AES++ which is to have the following functions:
...
1
vote
0answers
345 views
How to use QCA library in Qt
I have used QCA (qca-2.0.1-mingw) library for encryption.
I have searched some code and write into the application. But it does not support the AES encryption standard.
e.g
QCA::supportedFeatures();
...
1
vote
0answers
127 views
MySQL Transparent Column Encryption
I have a table 'tab', which essentially consists of two columns 'user' and 'data'. 'user' refers to some user ID at application level, 'data' to some confidential information stored by the user.
...
1
vote
0answers
240 views
Node.js Crypto input/output types
I am trying to figure out the Node.js Crypto library and how to use it properly for my situation.
My Goal is:
key in hex string 3132333435363738313233343536373831323334353637383132333435363738
text ...
1
vote
0answers
243 views
AES implementations
What is the fastest method for decrypting data using AES in AS3? Someone told me that there are faster ways to decrypt data than the as3crypto implementation.
How many ways are there to ...
1
vote
0answers
218 views
Encrypt in PHP (AES,CBC), null value after decryption on iPhone
I am encrypting a value in PHP and another programmer is decrypting it in an iPhone app. Neither of us could be called knowledgeable in encryption. Everything looks correct from the information I ...
1
vote
0answers
122 views
iPhone Submit application on AppStore having Encryption
I am using AES256 CommonCrypto framework of iOS to encypt data in my application, application is client server communication, all the data is encypt and decrypt both ends, my question is that do I ...
1
vote
0answers
297 views
Bouncycastle RSA key size and Padding
I am using the RSA implementation from Bouncycastle. I am getting a cipher instance with the following options,
"RSA/ECB/PKCS1Padding"
My question is how do you pick which padding to use? and What ...
1
vote
0answers
408 views
How do you decrypt ASPXAuth, what is the IV?
Does anybody know what Key and IV are used to encrypt/decrypt the ASPXAUTH cookie?
I think I have the Key part figured out.
After extensive reading and research (and other questions posted here) I ...
1
vote
0answers
163 views
Object already exists exception in RSACryptoServiceProvider
First let me start by saying I'm sorry if I posted this question in the wrong place. I saw the entry at Object already exists in RSACryptoServiceProvider. I tried the solutions offered there. But, ...
1
vote
0answers
184 views
Encrypt video on the fly from android camera
I want to encrypt video on the fly that android camera captures. So I need to tell android MediaRecorder to write it video stream to my CipherOutputStream. The problem is MediaRecorder.setOutputFile() ...
1
vote
0answers
84 views
Encrypting retrieved data from Selenium/Watir
When using Selenium (or Watir) as a Web data extractor, is there a way to encrypt each circulating flow between Websites and extractor in order to avoid any kind of "man-in-the-middle" attacks?
1
vote
0answers
171 views
Usage example of as2crypto
I've got an AS3 project that I've successfully added encryption to with the excellent as3crypto library. I've also got an AS2 project that I would like to add the exact same encryption to, with the ...
1
vote
0answers
153 views
RSA cross platform b/w JAVA & Symbian
1) I am able to Encrypt and Decrypt with my app generated values in symbian with the below values
RInteger iE = RInteger::NewL(0x10001);
RInteger iN = ...
1
vote
0answers
89 views
Encrypt credentials in web.config possible
I have this section of my web.config file.
<system.web>
<authentication mode="Forms">
<forms loginUrl="~/Login.aspx">
<credentials passwordFormat="Clear">
...
1
vote
0answers
231 views
Decrypting an XML file with asymmetric keys
I have a program that exports a set of database rows. Within the rows is data that needs to be encrypted. I am able to encrypt the data but I cannot seem to decrypt it. I followed the coding shown in ...
1
vote
0answers
159 views
Office Encryption Provider interface implementation
I am new to C# and Office Addins in general, and cannot find any information on the Office.EncryptionProvider interface, which I am attempting to implement in order to create a custom method of ...
1
vote
0answers
230 views
En/decrypt between php and j2me app
I have a Blackberry app (j2me) the encrypt data and sends it to a server, to a php page, and back again. For the app I use lcrypto-j2me-147 (Bouncy Castle) and mcrypt for the php part. The problem ...
1
vote
0answers
185 views
How to decrypt a file which is encrypted using GNU privacy assistant in SSIS package
I have to decrypt all the files inside a folder using the SSIS package and after that I have to work on those decrypted files.
I have installed GNU privacy assistance in my system which allows to ...
1
vote
0answers
63 views
Oracle/SQL Server Cross Platform Encryption Solution
I am looking to implement a secure method for encrypting some data on our systems that will be accessed by many different code bases from many different sources.
Essentially, we have a system of .NET ...
1
vote
0answers
292 views
encrypt and decrypt aes with iphone and javascript
I'm trying to figure out to encrypt and decrypt between ios and javascript. I've been using http://dotmac.rationalmind.net/2009/02/aes-interoperability-between-net-and-iphone/ and ...
1
vote
0answers
83 views
php gnupg email marketing encrypt with public key
I want to use the GNUPG Public Key for encryption of the text and send emails. I know how to encrypt the file but i din't know how to send the email, along with Public Key, so that any Email Client ...
1
vote
0answers
156 views
PHP - cookie encryption and hmac signing
I was just wondering is it redundant to encrypt and sign a cookie? Isn't encryption enough? Why or why not?
If it's not redundant, I'm wondering if I'm going about this in the right direction. For ...
1
vote
0answers
93 views
EncryptedXml OAEP - null reference issue
so I have one issue with EncryptedXml decrypting using OAEP. I have part of code which encrypts some xml like this:
...
byte[] encryptedElement = eXml.EncryptData(elementToEncrypt, ...
1
vote
0answers
102 views
How to encrypt cart data send to paypal
i have a cart and when user purchase and check out then some data send to paypal. i have checked that using firebug we can see what data has been posted to paypal site. like sample data posted to ...
1
vote
0answers
181 views
unencrypted eml file to encrypted msg file
I have a folder of unencrypted eml files, and I need to import them into outlook after having encrypted the emails.
I found on the Internet a libary named MailBee.NET that enables me in c# to ...
1
vote
0answers
176 views
java.crypto different output on mac/linux JVM & Android 2.2 to Android 2.3
The following code, decrypts the string as expected on the JVM on my laptop, my server and in Android v2.2. However, if I use exactly the same code on Android 2.3 I get an incorrect output. I thought ...
1
vote
0answers
594 views
Decrypting Java 3DES ECB NoPadding encrypted value in PHP
I have a 3des encrypted hex string which I get from a server. When I decrypt it with Java ECB/NoPadding, I get the expected value, but when I try to decrypt it with PHP I am getting a different value. ...
1
vote
0answers
167 views
WCF basic256 message encryption over HTTPS
Is it possible to encrypt the message with basic256 encryption and send it over HTTPS in WCF using basicHttpBinding? I know there is a security mode called TransportWithMessageCredentials but it ...
1
vote
0answers
172 views
tcpTransport + encryption + compression + windows authentication
Here's what I need:
Compression -> requires Custom Binding
NetTcpBinding
Encryption
User's Windows Username (Windows Authentication is fine, but it has to be non-blocking)
It seems almost ...
1
vote
0answers
227 views
unix password service for storing plain-text password in php web application?
Is there a unix service, or at least one I could cobble together, for storing a plaintext password for a PHP web application?
In composing this question, I found that c# provides a service for ...
1
vote
0answers
2k views
RC4 decryption with key in Python
I pulled this code from here for asp http://bytes.com/topic/access/insights/906671-rc4-encryption-algorithm-vba-vbscript, which i then run thru base64.
I am wonder if anyone can help me figure out ...
1
vote
0answers
495 views
Encrypting the indexes in solr and Lucene
I would like to know if there a way to encrypt the indexes in solr and Lucene?
As the content is hosted on AWS.
1
vote
0answers
817 views
Encrypting a ZipPackage Stream in Memory
I am using .NET 4.0 and trying to do the following:
Create a System.IO.Packaging.Package in Memory
Add Items to the package
encrypt package before it is written to file.
I tried to create a ...
1
vote
0answers
350 views
SJCL not working correctly in Rhino under Java, while same script behaves as expected in sample PHP script
Update:
This works
public static void main(String[] args){
try {
ScriptEngineManager mgr = new ScriptEngineManager();
List<ScriptEngineFactory> factories = ...


