|
4 | 4 |
|
5 | 5 | \brief This function derives keys using SRTP KDF algorithm. |
6 | 6 |
|
7 | | - \return 0 Returned upon successful key derviation. |
| 7 | + \return 0 Returned upon successful key derivation. |
8 | 8 | \return BAD_FUNC_ARG Returned when key or salt is NULL |
9 | 9 | \return BAD_FUNC_ARG Returned when key length is not 16, 24 or 32. |
10 | 10 | \return BAD_FUNC_ARG Returned when saltSz is larger than 14. |
@@ -57,7 +57,7 @@ int wc_SRTP_KDF(const byte* key, word32 keySz, const byte* salt, word32 saltSz, |
57 | 57 |
|
58 | 58 | \brief This function derives keys using SRTCP KDF algorithm. |
59 | 59 |
|
60 | | - \return 0 Returned upon successful key derviation. |
| 60 | + \return 0 Returned upon successful key derivation. |
61 | 61 | \return BAD_FUNC_ARG Returned when key or salt is NULL |
62 | 62 | \return BAD_FUNC_ARG Returned when key length is not 16, 24 or 32. |
63 | 63 | \return BAD_FUNC_ARG Returned when saltSz is larger than 14. |
@@ -109,7 +109,7 @@ int wc_SRTCP_KDF(const byte* key, word32 keySz, const byte* salt, word32 saltSz, |
109 | 109 |
|
110 | 110 | \brief This function derives a key with label using SRTP KDF algorithm. |
111 | 111 |
|
112 | | - \return 0 Returned upon successful key derviation. |
| 112 | + \return 0 Returned upon successful key derivation. |
113 | 113 | \return BAD_FUNC_ARG Returned when key, salt or outKey is NULL |
114 | 114 | \return BAD_FUNC_ARG Returned when key length is not 16, 24 or 32. |
115 | 115 | \return BAD_FUNC_ARG Returned when saltSz is larger than 14. |
@@ -156,7 +156,7 @@ int wc_SRTP_KDF_label(const byte* key, word32 keySz, const byte* salt, |
156 | 156 |
|
157 | 157 | \brief This function derives key with label using SRTCP KDF algorithm. |
158 | 158 |
|
159 | | - \return 0 Returned upon successful key derviation. |
| 159 | + \return 0 Returned upon successful key derivation. |
160 | 160 | \return BAD_FUNC_ARG Returned when key, salt or outKey is NULL |
161 | 161 | \return BAD_FUNC_ARG Returned when key length is not 16, 24 or 32. |
162 | 162 | \return BAD_FUNC_ARG Returned when saltSz is larger than 14. |
|
0 commit comments