Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Home-medicating a human right, too? (Score 1) 1324

From time to time we hear news about parents who do not want to get their children medically treated, even if they suffer of serious diseases. This is a human right, too, isn't it? The doctors in the hospital are all quacks, aren't they? I find the whole concept of parents determining childrens faith and beliefs questionable. Transporting values by giving a good example, ok. But forcing membership in a religion by dubbing the little lads before they even know what's going on? That's perverse.

Comment Use hashing algorithms (Score 1) 1007

I created a small shell tool for myself. I'm entering some characters and the tool performs a incremental search in a file containing login identifiers (e.g. kleinesRaedchen@slashdot.org). Then it asks for a master password. At its core the tool creates a login specific password like this:

PASSWD=`echo "${login}${masterpasswd}" | openssl dgst -ripemd160 -binary | openssl dgst -sha1 -binary | openssl base64 | head --bytes 8`

The password is stored in the KDE klipper for 20 seconds afterwards.

Slashdot Top Deals

Real Programmers don't eat quiche. They eat Twinkies and Szechwan food.

Working...