1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-26 17:39:03 +00:00

Spellcheck for Ncat, Nping source files

This commit is contained in:
dmiller
2014-02-20 21:22:22 +00:00
parent 3f0d0c16f9
commit 1575c63d7d
36 changed files with 77 additions and 77 deletions

View File

@@ -1,6 +1,6 @@
/***************************************************************************
* Crypto.cc -- The Crypto Class contains miscellanious methods and helpers*
* Crypto.cc -- The Crypto Class contains miscellaneous methods and helpers*
* that may be used to provide properties such as authentication, integrity*
* or confidentiality. *
* *
@@ -235,7 +235,7 @@ int Crypto::aes128_cbc_decrypt(u8 *inbuff, size_t inlen, u8 *dst_buff, u8 *key,
* the last one and then EVP_DecryptFinal says we have decrypted nothing.
* However I've tested this for hours and everything works fine. The
* full buffer is decrypted correctly, from the first to the last byte,
* so we return OP_SUCCESS even if OpenSSL says the opossite. */
* so we return OP_SUCCESS even if OpenSSL says the opposite. */
/* NOTE for developers debugging memory issues with Valgrind:
* None of these seems to free OpenSSL's internal error structures.