Skip to content

Commit 17a02cb

Browse files
committed
Fix aes failures
1 parent 6159cf0 commit 17a02cb

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tests/pkcs11test.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3981,6 +3981,8 @@ static CK_RV get_aes_128_key(CK_SESSION_HANDLE session, unsigned char* id,
39813981
#endif
39823982
{ CKA_ENCRYPT, &ckTrue, sizeof(ckTrue) },
39833983
{ CKA_DECRYPT, &ckTrue, sizeof(ckTrue) },
3984+
{ CKA_SIGN, &ckTrue, sizeof(ckTrue) },
3985+
{ CKA_VERIFY, &ckTrue, sizeof(ckTrue) },
39843986
#ifndef NO_AES
39853987
{ CKA_VALUE, aes_128_key, sizeof(aes_128_key) },
39863988
#endif

0 commit comments

Comments
 (0)