diff options
author | william <william@25thandclement.com> | 2015-02-25 12:54:16 -0800 |
---|---|---|
committer | william <william@25thandclement.com> | 2015-02-25 12:54:16 -0800 |
commit | 60e2efe65fd5113952398ad3ed6b49a32a9ea5dd (patch) | |
tree | 38a1e26e5712b22359093962a92381b4eb70f914 /doc | |
parent | 0b413250257ab171fe733e93bb7ccb89531ce2a9 (diff) | |
download | luaossl-60e2efe65fd5113952398ad3ed6b49a32a9ea5dd.tar.gz luaossl-60e2efe65fd5113952398ad3ed6b49a32a9ea5dd.tar.bz2 luaossl-60e2efe65fd5113952398ad3ed6b49a32a9ea5dd.zip |
document des.string_to_key
Diffstat (limited to 'doc')
-rw-r--r-- | doc/luaossl.pdf | bin | 280959 -> 281822 bytes | |||
-rw-r--r-- | doc/luaossl.tex | 11 |
2 files changed, 11 insertions, 0 deletions
diff --git a/doc/luaossl.pdf b/doc/luaossl.pdf index e71002e..8078e4b 100644 --- a/doc/luaossl.pdf +++ b/doc/luaossl.pdf | |||
Binary files differ | |||
diff --git a/doc/luaossl.tex b/doc/luaossl.tex index d0bad06..239c98a 100644 --- a/doc/luaossl.tex +++ b/doc/luaossl.tex | |||
@@ -983,6 +983,17 @@ The routine operates internally on 64-bit unsigned integers.\footnote{Actually, | |||
983 | \end{Module} | 983 | \end{Module} |
984 | 984 | ||
985 | 985 | ||
986 | \begin{Module}{openssl.des} | ||
987 | |||
988 | Binds OpenSSL's DES interfaces. These bindings are incomplete. No modern protocol would ever need to use these directly. However, legacy protocols like Windows NTLM authentication require some of these low-level interfaces. | ||
989 | |||
990 | \subsubsection[\fn{des.string\_to\_key}]{\fn{des.string\_to\_key($password$)}} | ||
991 | |||
992 | Converts an arbitrary length string, $password$, to a DES key. Returns an 8-byte string. | ||
993 | |||
994 | \end{Module} | ||
995 | |||
996 | |||
986 | \chapter{Examples} | 997 | \chapter{Examples} |
987 | 998 | ||
988 | These examples and others are made available under examples/ in the source tree. | 999 | These examples and others are made available under examples/ in the source tree. |