[pkg-opensc-commit] [opensc] 165/295: pkcs11-tool: make login checks consistent in all test functions
Eric Dorland
eric at moszumanska.debian.org
Sat Jun 24 21:11:27 UTC 2017
This is an automated email from the git hooks/post-receive script.
eric pushed a commit to branch master
in repository opensc.
commit b6cb10f768892d970d9b57211873f058e5c2e929
Author: Nuno Goncalves <nunojpg at gmail.com>
Date: Thu Jan 26 14:34:29 2017 +0100
pkcs11-tool: make login checks consistent in all test functions
Signed-off-by: Nuno Goncalves <nunojpg at gmail.com>
---
src/tools/pkcs11-tool.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/tools/pkcs11-tool.c b/src/tools/pkcs11-tool.c
index 38551f0..8dbcfba 100644
--- a/src/tools/pkcs11-tool.c
+++ b/src/tools/pkcs11-tool.c
@@ -4127,8 +4127,8 @@ static int test_signature(CK_SESSION_HANDLE sess)
rv = p11->C_GetSessionInfo(sess, &sessionInfo);
if (rv != CKR_OK)
p11_fatal("C_OpenSession", rv);
- if ((sessionInfo.state & CKS_RO_USER_FUNCTIONS) == 0) {
- printf("Signatures: not logged in, skipping signature tests\n");
+ if (!(sessionInfo.state & CKS_RW_USER_FUNCTIONS)) {
+ printf("Signature: not a R/W session, skipping signature tests\n");
return errors;
}
@@ -4440,8 +4440,8 @@ static int test_verify(CK_SESSION_HANDLE sess)
rv = p11->C_GetSessionInfo(sess, &sessionInfo);
if (rv != CKR_OK)
p11_fatal("C_OpenSession", rv);
- if ((sessionInfo.state & CKS_RO_USER_FUNCTIONS) == 0) {
- printf("Verify: not logged in, skipping verify tests\n");
+ if (!(sessionInfo.state & CKS_RW_USER_FUNCTIONS)) {
+ printf("Verify: not a R/W session, skipping verify tests\n");
return errors;
}
@@ -4771,8 +4771,8 @@ static int test_decrypt(CK_SESSION_HANDLE sess)
rv = p11->C_GetSessionInfo(sess, &sessionInfo);
if (rv != CKR_OK)
p11_fatal("C_OpenSession", rv);
- if ((sessionInfo.state & CKS_RO_USER_FUNCTIONS) == 0) {
- printf("Decryption: not logged in, skipping decryption tests\n");
+ if (!(sessionInfo.state & CKS_RW_USER_FUNCTIONS)) {
+ printf("Decryption: not a R/W session, skipping decryption tests\n");
return errors;
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-opensc/opensc.git
More information about the pkg-opensc-commit
mailing list