1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-08 15:39:05 +00:00

Fix a couple of typos in openssl.luadoc:

Descrypt -> Decrypt
encrypt  -> decrypt
This commit is contained in:
jah
2008-12-29 18:28:45 +00:00
parent 9b82189c39
commit 3fb2b96f78

View File

@@ -153,12 +153,12 @@ function hmac(algorithm, key, message)
-- encrypted (default false).
function encrypt(algorithm, key, iv, data, padding)
--- Descrypt data with a given algorithm, key, and initialization vector.
--- Decrypt data with a given algorithm, key, and initialization vector.
-- @param algorithm Any of the strings returned by
-- <code>openssl.supported_ciphers</code>.
-- @param key Key.
-- @param iv Initialization vector.
-- @param data Data to encrypt.
-- @param data Data to decrypt.
-- @param padding If true, then the final block must be padded correctly
-- (default false).
function decrypt(algorithm, key, iv, data, padding)