Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

Unix

Unix v6

crypt(3)



crypt password encoding mov $key,r0

jsr

pc,crypt char *crypt(key)

char *key; On entry, r0 points to a string of characters terminated by an ASCII NUL. The routine performs an operation on the key which is difficult to invert (i.e. encrypts it) and leaves the resulting eight bytes of ASCII alphanumerics in a global cell called ‘‘word’’. From C, the argument is a string and the value returned is a pointer to the eight-character result. This routine is used to encrypt all passwords. passwd(I), passwd(V), login(I) Short or otherwise simple passwords can be decrypted easily by exhaustive search. Six characters of gibberish is reasonably safe.



crypt(3)