summaryrefslogtreecommitdiff
path: root/Cryptlib/Pk/CryptRsaBasic.c
diff options
context:
space:
mode:
authorGary Lin <glin@suse.com>2017-03-15 15:39:16 +0800
committerPeter Jones <pjones@redhat.com>2017-03-24 18:28:30 -0400
commit832152986545e8fc66f1ed5cf9d8bf518c7df2b3 (patch)
tree76780cd3e18c8d43fab3d812a8f617613a9522e2 /Cryptlib/Pk/CryptRsaBasic.c
parent3ee08dde9c6541186e6b72d1fbdf1a13d516bea4 (diff)
downloadefi-boot-shim-832152986545e8fc66f1ed5cf9d8bf518c7df2b3.tar.gz
efi-boot-shim-832152986545e8fc66f1ed5cf9d8bf518c7df2b3.zip
Update Cryptlib
Update to edk2 commit 6e4489d8129d233ef0fe85eeb6eebfecafe9ea6e (CryptoPkg: Refine type cast for pointer subtraction) Also replaced CryptAes.c, CryptArc4.c, CryptTdes.c, CryptMd4.c, CryptHmacMd5.c, and CryptHmacSha1.c with the Null version since we don't really need those functions. Signed-off-by: Gary Lin <glin@suse.com>
Diffstat (limited to 'Cryptlib/Pk/CryptRsaBasic.c')
-rw-r--r--Cryptlib/Pk/CryptRsaBasic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cryptlib/Pk/CryptRsaBasic.c b/Cryptlib/Pk/CryptRsaBasic.c
index e49db51e..e68dd024 100644
--- a/Cryptlib/Pk/CryptRsaBasic.c
+++ b/Cryptlib/Pk/CryptRsaBasic.c
@@ -67,14 +67,14 @@ RsaFree (
This function sets the tag-designated RSA key component into the established
RSA context from the user-specified non-negative integer (octet string format
represented in RSA PKCS#1).
- If BigNumber is NULL, then the specified key componenet in RSA context is cleared.
+ If BigNumber is NULL, then the specified key component in RSA context is cleared.
If RsaContext is NULL, then return FALSE.
@param[in, out] RsaContext Pointer to RSA context being set.
@param[in] KeyTag Tag of RSA key component being set.
@param[in] BigNumber Pointer to octet integer buffer.
- If NULL, then the specified key componenet in RSA
+ If NULL, then the specified key component in RSA
context is cleared.
@param[in] BnSize Size of big number buffer in bytes.
If BigNumber is NULL, then it is ignored.