0
votes
2answers
76 views
PHP MD5 implementation
I'm currently attempting to code one for part of a college project - binary/hex handling and cryptographic functions are well regarded in the mark scheme, so I thought I'd kill two …
2
votes
3answers
25 views
In ruby, how to decrypt a string which is encrypted by “crypted” method
In ruby, I encrypt a string using "crypt" method, for example:
str = "123"
strencrypt = str.crypt("aa")
I want to decrypt from strencrypt and obtain the original string. How can …
1
vote
1answer
36 views
Encryption: how to have 1 iv despite multiple fields
I've been stuck trying to arrive at a best solution for this for a while. I know that an initialization vector has to be unique for each item being encrypted. So if I'm encrypting …
0
votes
4answers
50 views
Suggestions for a fast two way encrypt?
Can someone suggest a fast 2 way encryption algorithm for long ints?
My candidates are:
AES: the Advanced Encryption Standard specified by NIST FIPS-197.
BLOWFISH: the Blowfish …
1
vote
1answer
58 views
lightweight RESTful PHP server
I want to write an extremely lightweight PHP server which handles data requests from remote clients. The data returned is tabular (like that of data read from a CSV file or a datab …
0
votes
2answers
28 views
how to send zipped (ASCII) data in an HTTP response from PHP
I am writing a service that sends data as a response, to a client.
I am sending text (PLAIN ASCII) data, but I want to compress the data first (uzing any of the standard compressi …
0
votes
2answers
83 views
how to encrypt string data so that it can only be decoded by the computer it resides on ?
say i have strings that are sent back and forth from the client, and server via AJAX.
however i wish to securely encrypt it before being sent via the client. once it's on the serv …
2
votes
9answers
186 views
What is the best way to determine duplicate credit card numbers without storing them?
I run a website where we mark certain accounts as scammers, and "flag" their account and all credit cards used as being bad. We don't store actual credit card values, but are stor …
1
vote
4answers
109 views
Password encryption/ decryption code in C#.NET.
Hi All
I want simple encryption and decryption of password in C#.NET. how to save the password in encrypted format in database and retrieve as original format by decryption, kindl …
1
vote
2answers
51 views
ASP.net rijndael decrypt - Length of data to decrypt
A lot of items I've found so far have been a bit vague or ... unspecific so I'm hoping to get an answer.
I've got two little methods - easy ones that look as such...
private …
1
vote
1answer
32 views
How to encrypt passwords for JConsole’s password file
I am using the JConsole to access my application MBeans and i use the the password.properties file. But as per the Sun's specification this file contains passwords in clear text fo …
0
votes
2answers
50 views
C++ Unicode Encryption Library Required (Or is it?)
I need to encryption several pieces of text in a file along side unencrypted text in the same file. All the data is Unicode text.
In all the encryption libraries I have looked a …
0
votes
1answer
49 views
How to create ebook DRM reader and distribution platform?
My company has decided to develop ebook DRM platform.
The platform does not have to be perfectly safe, but should be comparable to existing DRM platform.
Software can be written i …
1
vote
2answers
36 views
Blackberry Content Protection and the Persistent Store
I have an application which stores data to the persistent store by setting the contents of the PersistentObject as a hashtable, e.g. saving preferences is done by entering strings …
1
vote
1answer
77 views
file size is dramatically increased after pickle
I'm reading in a file and sending the data (once encrypted) to a dictionary, with a hash of the data before and after encryption. I then pickle the dictionary but find the file siz …
