|
Hi,
I need a simple encryption algorithm that doesn't use a key.
Which ones do you guys recommend?
How about if I use the built in encryption method that forms authentication has? (I forget the method/namespace for it).
Started by Blankman on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
That's the closest....
There is no useful encryption.
This external thing is a key.
Something outside of the thing being encrypted needs to be used to do encryption, if only because you need that thing to decrypt it later.
|
|
Possible Duplicate:
Will it ever be possible to run all web traffic via HTTPS?
Why is the concept of having secure communication using encryption tied to confirming the website's identity in https? Wouldn't all users of the web benefit from even having...
Started by MikeN on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
If everybody out there started to use SSL, it would lose that second certificates (the use of self....
Https won't help you if the bad guys have your bank's database to who you really think you are.
And/or worms/viruses on the client.
|
|
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 XTEA2("keykey"); String s = "hi there"; byte[] theBytes = s.getBytes(); System.out.println("Plaintext...
Started by Steven1350 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In case you need to go that far, you can use on code.google.com
The problem here....
This:
http://www.google.com/search?q=java+encryption+XTEA gave me this
http://en.wikipedia.org/wiki a number of interfaces and register your implementation.
|
Ask your Facebook Friends
|
EDIT: Can anybody actually answer the question? Thanks, I don't need no audit trail, I WILL know all the passwords and users can't change them and I will continue to do so.
This is not for hacking!
We recently migrated away from a old and rusty Linux/...
Answer Snippets (Read the full thread at serverfault):
I would not be so certain that my DC Secrets to find username/password... .
With all that said, you should not use reversible encryption and you encryption" - you need to change the way you manage passwords.
To work against those OSes.
|
|
What is the difference between Obfuscation, Hashing, and Encryption?
Here is my understanding:
Hashing is a one-way algorithm; cannot be reversed Obfuscation is similar to encryption but doesn't require any "secret" to understand (ROT13 is one example...
Started by Robert Taylor on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
Obfuscating is....
To translate the data into another form where encryption uses a formula requiring key(s) to encrypt/decryptAll fine, except obfuscation is not really similar to encryption - sometimes it doesn't even not be.
|
|
I am storing files in S3 and want to encrypt the data to the maximum. I am using ThreeSharp S3 library and it uses DESCryptoServiceProvider to encrypt the data. How strong is DESCryptoServiceProvider compared to other encryption available in .Net?
I have...
Started by Dave on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
The best symmetric key encryption that .Net ships with out of the box is AES 256 ( http/wiki/Advanced....
However, it is an old federal standard that despite in a matter of hours .
encryption, due to the use of parity bits in the key.
|
|
I have some PHP source code that I'm hosting with hosting company XYZ. I'm using a PHP encryption software like Zend Guard or ionCube to protect the source from being viewed by anyone (sysadmin or hacker that hacks the sysadmin).
How easy/hard is it for...
Started by Chris on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Stick to your legal team for rights access, not encryption :) Better yet, open source your project :P
EDIT: 'Encryption' also adds heavily to execution times!
Why exactly do you need to encrypt....
If it can be executed it can be decompiled.
|
|
Hi Guys,
I have an interesting encryption problem at hand. I do not know if it can be solved but here goes:
A database is to contain sensitive user information. As such, the user information must be encrypted (two way encryption). The user has a login...
Started by Crimson on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There are also ways to encrypt the recovery agent's key so that m-out-....
Encrypt all data twice: once with the user, and recovery is authorized, then the recovery key is obtained.
What you want is a recovery agent.
And read all the data.
|
|
I'm trying to reverse an XOR encryption. I have the encryption code:
// Walk the 16 nibbles in the 64 bit long long, selecting the corresponding key digit // and XORing it into the result. unsigned long long result = 0; for( i=0; i<16; i++ ) { int ...
Started by David on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You don't need to 'recover' any lost bits, since all that's being done is creating a bitmask... .
guys,
thanks for all the answers, but this whole xor encryption algorithm just do one thing set of bits to use in each round of the for loop.
|
|
Hello guys,
Please I need your help, Here is my encryption codes in PHP, it works fine but I don't know how to decrypt it in PHP. I need to get the actual value back. I have similar code in c# and I was able to get the same results. But I need to decrypt...
Started by james on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The SHA-256 hash function is a hash function , it is not bijective .
Hi use the Mcrypt module instead.
If you need to be able to encrypt and decrypt information, read up on the mcrypt functions.
|