Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^2: What *are* the best ways to encrypt data?

by hardburn (Abbot)
on Aug 27, 2004 at 14:50 UTC ( [id://386396]=note: print w/replies, xml ) Need Help??


in reply to Re: What *are* the best ways to encrypt data?
in thread What *are* the best ways to encrypt data?

Digest::MD5 isn't a suitable encryption technique

There are ways to use a hash function as a cipher. IIRC, it involves using the digest as an output-feedback stream cipher. The security of the resulting cipher is based on the security of the hash function (in other words, don't use MD5 for this). Also, keep in mind that the creaters a cryptographic hash function generally don't have in mind its use as a cipher.

The only practical use I've been able to find for this is a situation where a government has banned strong encryption software, but not digest functions. In which case a coder can grab an existing digest function and make themselves a strong encryption program. Other than that, you're better off using a real cipher.

"There is no shame in being self-taught, only in not trying to learn in the first place." -- Atrus, Myst: The Book of D'ni.

  • Comment on Re^2: What *are* the best ways to encrypt data?

Replies are listed 'Best First'.
Re^3: What *are* the best ways to encrypt data?
by Anonymous Monk on Aug 27, 2004 at 15:30 UTC
    The only practical use I've been able to find for this is a situation where a government has banned strong encryption software, but not digest functions. In which case a coder can grab an existing digest function and make themselves a strong encryption program.
    If a government falls for that, why not just take integer arithmetic and build a strong encryption program from that?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://386396]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-19 17:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found