Skip to content

Commit 4631b3f

Browse files
author
Bridger Voss
committed
old wc naming convention fix
1 parent 3658b76 commit 4631b3f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

signature/rsa_buffer/sign.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ void print_buffer(char* name, unsigned char* data, word32 len)
7474
int main(int argc, char* argv[])
7575
{
7676
int ret = 0;
77-
Sha256 sha256;
78-
Sha256* pSha256 = NULL;
77+
wc_Sha256 sha256;
78+
wc_Sha256* pSha256 = NULL;
7979
RsaKey rsaKey;
8080
RsaKey* pRsaKey = NULL;
8181
#ifdef WC_RSA_BLINDING

signature/rsa_buffer/verify.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
int main(int argc, char* argv[])
4848
{
4949
int ret = 0;
50-
Sha256 sha256;
51-
Sha256* pSha256 = NULL;
50+
wc_Sha256 sha256;
51+
wc_Sha256* pSha256 = NULL;
5252
RsaKey rsaKey;
5353
RsaKey* pRsaKey = NULL;
5454
word32 idx;

0 commit comments

Comments
 (0)