1
vote
1answer
42 views
Request.Querystring removes characters from encrypted text
In my application I take a user's e-mail address, encrypt it, and URLEncode it, and pass it along into a QueryString.
email = Server.UrlEncode(aes.Encrypt(email));
The landing p …
1
vote
2answers
106 views
How to make a message into a polynomial?
I'm doing a project where I have to implement the NTRUEncrypt public key cryptosystem. This is the first step according to their guide in encrypting - "Alice, who wants to send a s …
0
votes
4answers
144 views
Encryption for Executable
Can anyone recommend what's a good way to encrypt an executable? I was trying to use AxCrypt but I don't like the usage, i.e. you specify a passcode and the person who launches the …
0
votes
0answers
9 views
How can I use externally generated keys to encrypt and decrypt the data in iPhone?
I am working on an application, in which I need to encrypt and decrypt the data, with the keys generated by server. I viewed the sample code of Crypto Exercise. In that keys are au …
-1
votes
3answers
109 views
Java Encryption using XTEA
How would I encrypt a string using the XTEA scheme in Java.
Thanks
public class run {
public static void main(String[] args) throws Exception{
XTEA2 x= new …
-4
votes
3answers
154 views
How can I encode/encrypt c sharp code ? [closed]
Possible Duplicate:
Encrypting source code when publishing (C#)
How can I encode/encrypt c sharp code ?
0
votes
1answer
51 views
PHP and Mcrypt for alphabet only crypts?
Below is my current encryption function.
define('ENCRYPT_KEY', 'ldkKKmeJddeFffKdjeddd');
function market_dock_api_encrypt($string) {
$key = ENCRYPT_KEY; //preset key to …
1
vote
4answers
193 views
Encrypted, password-protected file creation
I'm writing a program that creates a Word document with sensitive information. I'd like to encrypt and password protect the document and distribute it in a self-extracting file so …
0
votes
1answer
316 views
Decrypt (only) connection string section in Winforms app.config
Ok, I know this has been asked a thousand times before, but no conclusive solution has been derived...so here is another really silly question!
I have a Winforms 3.5 app and using …
0
votes
1answer
111 views
Unspecified error when encrypting data with C#.NET RSA
Hello :)
I have no idea how to describe my problem. It is the simplest way to encrypt a byte array, and I literally get "Unspecified Error" at the .Encrypt(...) method.
byte[] cl …
1
vote
2answers
143 views
How do I translate this SHA function in Java to an equivalent in Ruby?
I have this algorithm in Java to store passwords in database. I'd like to re-write my application in Ruby on Rails, so I need the same algorithm to compare hashed passwords. What's …
0
votes
2answers
121 views
Encrypt a local file using Flex or Actionscirpt or AIR?
I want to encrypt a local file using Adobe Flex, Actionscript or Air... help me.
...or I would like to know of other options but not vc++ or activeX.
I would like cross-platform o …
1
vote
2answers
106 views
Encrypt in PHP not working as expected…
Hi,
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 encrtypte …
0
votes
0answers
76 views
Entity Framework Encrypt Connection String
I use Entity Framework and Linq to Entities. I want to encrypt the connection string and the EF has to decrypt automaticaly, How can I do it?
Thanks in advance,
Javier P. de Jorg …
2
votes
4answers
434 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 th …
