@@ -32147,9 +32147,11 @@ static int SignCert(int requestSz, int sType, byte* buf, word32 buffSz,
3214732147 * @param [in] buf The input buf to sign.
3214832148 * @param [in] bufSz The buffer size
3214932149 * @param [in] keyType The key type.
32150+ * @param [in] key Key data.
3215032151 * @param [in] rng Random number generator.
32151- * @return Size of signature on success.
32152- * @return < 0 on error.
32152+ *
32153+ * @return Size of signature on success.
32154+ * @return < 0 on error.
3215332155 * */
3215432156int wc_MakeSigWithBitStr(byte *sig, int sigSz, int sType, byte* buf,
3215532157 word32 bufSz, int keyType, void* key, WC_RNG* rng)
@@ -32282,14 +32284,16 @@ int wc_MakeSigWithBitStr(byte *sig, int sigSz, int sType, byte* buf,
3228232284/* Sign an x509 Certificate v3 from cert input using any
3228332285 * key type, and write to buffer.
3228432286 *
32285- * @param [in] requestSz Size of requested data to sign.
32286- * @param [in] sType The signature type.
32287- * @param [in] derSz Der buffer size.
32288- * @param [in] keyType The type of key.
32289- * @param [in] key Key data.
32290- * @param [in] rng Random number generator.
32291- * @return Size of signature on success.
32292- * @return < 0 on error
32287+ * @param [in] requestSz Size of requested data to sign.
32288+ * @param [in] sType The signature type.
32289+ * @param [in,out] buf Der buffer to sign.
32290+ * @param [in] buffSz Der buffer size.
32291+ * @param [in] keyType The type of key.
32292+ * @param [in] key Key data.
32293+ * @param [in] rng Random number generator.
32294+ *
32295+ * @return Size of signature on success.
32296+ * @return < 0 on error
3229332297 * */
3229432298int wc_SignCert_ex(int requestSz, int sType, byte* buf, word32 buffSz,
3229532299 int keyType, void* key, WC_RNG* rng)
@@ -40940,7 +40944,7 @@ static int DecodeAcertGeneralName(const byte* input, word32* inOutIdx,
4094040944 * @param [in] input Buffer holding encoded data.
4094140945 * @param [in] sz Size of encoded data in bytes.
4094240946 * @param [in] tag ASN.1 tag value expected in header.
40943- * @param [in, out] acert Decoded certificate object.
40947+ * @param [in, out] acert Decoded attribute certificate object.
4094440948 * @param [in, out] entries Linked list of DNS name entries.
4094540949 *
4094640950 * @return 0 on success.
@@ -41069,7 +41073,7 @@ enum {
4106941073 *
4107041074 * @param [in] input Buffer containing encoded Holder field.
4107141075 * @param [in] len Length of Holder field.
41072- * @param [in, out] acert Decoded certificate object.
41076+ * @param [in, out] acert Decoded attribute certificate object.
4107341077 *
4107441078 * @return 0 on success.
4107541079 * @return ASN_PARSE_E when BER encoded data does not match ASN.1 items or
0 commit comments