We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e2e6d1 commit 37f4c13Copy full SHA for 37f4c13
wolfssl/wolfcrypt/pkcs7.h
@@ -354,10 +354,6 @@ struct wc_PKCS7 {
354
CallbackRsaSignRawDigest rsaSignRawDigestCb;
355
#endif
356
357
-#if defined(HAVE_PKCS7_ECC_RAW_SIGN_CALLBACK) && defined(HAVE_ECC)
358
- CallbackEccSignRawDigest eccSignRawDigestCb;
359
-#endif
360
-
361
/* used by DecodeEnvelopedData with multiple encrypted contents */
362
byte* cachedEncryptedContent;
363
word32 cachedEncryptedContentSz;
@@ -388,6 +384,10 @@ struct wc_PKCS7 {
388
384
389
385
CallbackAESKeyWrapUnwrap aesKeyWrapUnwrapCb;
390
386
387
+#if defined(HAVE_PKCS7_ECC_RAW_SIGN_CALLBACK) && defined(HAVE_ECC)
+ CallbackEccSignRawDigest eccSignRawDigestCb;
+#endif
+
391
/* !! NEW DATA MEMBERS MUST BE ADDED AT END !! */
392
};
393
0 commit comments