Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ntp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
fail-fast: false
matrix:
# List of releases to test
ref: [ 4.2.8p15, 4.2.8p17 ]
ref: [ 4.2.8p15, 4.2.8p17, 4.2.8p18 ]
name: ${{ matrix.ref }}
if: github.repository_owner == 'wolfssl'
runs-on: ubuntu-24.04
Expand Down
6 changes: 6 additions & 0 deletions src/ssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -12923,6 +12923,12 @@ const WOLFSSL_ObjectInfo wolfssl_object_info[] = {
#endif /* WOLFSSL_SHA3 */
#ifdef WOLFSSL_SM3
{ WC_NID_sm3, SM3h, oidHashType, "SM3", "sm3"},
#endif
#ifdef WOLFSSL_SHAKE128
{ WC_NID_shake128, SHAKE128h, oidHashType, "SHAKE128", "shake128"},
#endif
#ifdef WOLFSSL_SHAKE256
{ WC_NID_shake256, SHAKE256h, oidHashType, "SHAKE256", "shake256"},
#endif
/* oidSigType */
#ifndef NO_DSA
Expand Down
8 changes: 8 additions & 0 deletions wolfcrypt/src/evp.c
Original file line number Diff line number Diff line change
Expand Up @@ -11281,6 +11281,14 @@ const WOLFSSL_EVP_MD* wolfSSL_EVP_get_digestbynid(int id)
#ifdef WOLFSSL_SM3
case WC_NID_sm3:
return wolfSSL_EVP_sm3();
#endif
#ifdef WOLFSSL_SHAKE128
case WC_NID_shake128:
return wolfSSL_EVP_shake128();
#endif
#ifdef WOLFSSL_SHAKE256
case WC_NID_shake256:
return wolfSSL_EVP_shake256();
#endif
default:
WOLFSSL_MSG("Bad digest id value");
Expand Down