Skip to content

Commit c9357de

Browse files
committed
Fixed comments for doxygen
1 parent 290a5a9 commit c9357de

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

wolfssl/wolfcrypt/asn_public.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ typedef int (wc_pem_password_cb)(char* passwd, int sz, int rw, void* userdata);
266266
word32* outLen, int sigAlgo, int keyType, void* ctx)
267267
{
268268
MySignCtx* myCtx = (MySignCtx*)ctx;
269-
/* Perform signing using external device/HSM */
269+
// Perform signing using external device/HSM
270270
return myDevice_Sign(myCtx->device, in, inLen, out, outLen);
271271
}
272272
\endcode
@@ -598,14 +598,14 @@ WOLFSSL_API int wc_SignCert(int requestSz, int sType, byte* buf, word32 buffSz,
598598
int derSz;
599599
MySignCtx myCtx;
600600
601-
/* Initialize cert and set subject, etc. */
601+
// Initialize cert and set subject, etc.
602602
wc_InitCert(&cert);
603-
/* ... set cert fields ... */
603+
// ... set cert fields ...
604604
605-
/* Make certificate body */
605+
// Make certificate body
606606
derSz = wc_MakeCert(&cert, derBuf, sizeof(derBuf), NULL, NULL, &rng);
607607
608-
/* Sign using callback */
608+
// Sign using callback
609609
derSz = wc_SignCert_cb(cert.bodySz, cert.sigType, derBuf, sizeof(derBuf),
610610
RSA_TYPE, mySignCallback, &myCtx, &rng);
611611
if (derSz > 0) {

0 commit comments

Comments
 (0)