Skip to content

Commit

Permalink
Test setting CKA_TOKEN false for RSA key gen
Browse files Browse the repository at this point in the history
  • Loading branch information
qpernil committed Nov 4, 2024
1 parent 11b7912 commit ef31557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/p11_generate_rsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ int main(int argc, char *argv[]) {
{CKA_VERIFY, &ck_true, sizeof(ck_true)},
{CKA_WRAP, &ck_true, sizeof(ck_true)},
{CKA_UNWRAP, &ck_false, sizeof(ck_false)},
{CKA_TOKEN, &ck_true, sizeof(ck_true)},
{CKA_TOKEN, &ck_false, sizeof(ck_false)},
{CKA_PRIVATE, &ck_false, sizeof(ck_false)},
{CKA_EXTRACTABLE, &ck_true, sizeof(ck_true)},
{CKA_MODIFIABLE, &ck_false, sizeof(ck_false)},
Expand Down

0 comments on commit ef31557

Please sign in to comment.