summaryrefslogtreecommitdiff
path: root/CryptoPkg/Library/BaseCryptLib/Hash/CryptMd4.c
diff options
context:
space:
mode:
authorGary Lin <glin@suse.com>2016-10-19 15:01:10 +0800
committerQin Long <qin.long@intel.com>2016-11-07 23:21:22 +0800
commit2998af862469c6a05657e169d7def6f55420caad (patch)
tree51ea9442d3b38f7eb552c150548be35e4bb3b093 /CryptoPkg/Library/BaseCryptLib/Hash/CryptMd4.c
parentf675a1b42235b508e17220878453b4b1f04dd990 (diff)
downloadedk2-platforms-2998af862469c6a05657e169d7def6f55420caad.tar.xz
CryptoPkg: Fix typos in comments
- intialized -> initialized - componenet -> component - compoents -> components - FAlSE -> FALSE - responsiblity -> responsibility - validility -> validity - procudure -> procedure - pamameter -> parameter - randome -> random - buiild -> build Cc: Ting Ye <ting.ye@intel.com> Cc: Qin Long <qin.long@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Gary Lin <glin@suse.com> Reviewed-by: Qin Long <qin.long@intel.com>
Diffstat (limited to 'CryptoPkg/Library/BaseCryptLib/Hash/CryptMd4.c')
-rw-r--r--CryptoPkg/Library/BaseCryptLib/Hash/CryptMd4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/CryptoPkg/Library/BaseCryptLib/Hash/CryptMd4.c b/CryptoPkg/Library/BaseCryptLib/Hash/CryptMd4.c
index d9cc4455a8..fb7dd48753 100644
--- a/CryptoPkg/Library/BaseCryptLib/Hash/CryptMd4.c
+++ b/CryptoPkg/Library/BaseCryptLib/Hash/CryptMd4.c
@@ -101,7 +101,7 @@ Md4Duplicate (
This function performs MD4 digest on a data buffer of the specified size.
It can be called multiple times to compute the digest of long or discontinuous data streams.
- MD4 context should be already correctly intialized by Md4Init(), and should not be finalized
+ MD4 context should be already correctly initialized by Md4Init(), and should not be finalized
by Md4Final(). Behavior with invalid context is undefined.
If Md4Context is NULL, then return FALSE.
@@ -148,7 +148,7 @@ Md4Update (
This function completes MD4 hash computation and retrieves the digest value into
the specified memory. After this function has been called, the MD4 context cannot
be used again.
- MD4 context should be already correctly intialized by Md4Init(), and should not be
+ MD4 context should be already correctly initialized by Md4Init(), and should not be
finalized by Md4Final(). Behavior with invalid MD4 context is undefined.
If Md4Context is NULL, then return FALSE.