From 3fb2b96f7845c6cd988ff30eede6076cb3ce71a1 Mon Sep 17 00:00:00 2001 From: jah Date: Mon, 29 Dec 2008 18:28:45 +0000 Subject: [PATCH] Fix a couple of typos in openssl.luadoc: Descrypt -> Decrypt encrypt -> decrypt --- nselib/openssl.luadoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nselib/openssl.luadoc b/nselib/openssl.luadoc index b229bda1a..8e2161a16 100644 --- a/nselib/openssl.luadoc +++ b/nselib/openssl.luadoc @@ -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 -- openssl.supported_ciphers. -- @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)