summaryrefslogtreecommitdiff
path: root/src/windows/csp/csp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows/csp/csp.cpp')
-rw-r--r--src/windows/csp/csp.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/windows/csp/csp.cpp b/src/windows/csp/csp.cpp
index bcbdcba..96dd55b 100644
--- a/src/windows/csp/csp.cpp
+++ b/src/windows/csp/csp.cpp
@@ -165,9 +165,14 @@ CPAcquireContext(
context->CKAID_.HexToBin();
- LOG("Container name: \"%s\"\n", &context->containerName_[0]);
- LOG("CKA_ID: %s \"%s\"\n", StringifyBin(context->CKAID_).c_str(),
- StringifyBin(context->CKAID_, false).c_str());
+ if (context->containerName_.size()) {
+ LOG("Container name: \"%s\"\n", &context->containerName_[0]);
+ }
+
+ if (context->CKAID_.size()) {
+ LOG("CKA_ID: %s \"%s\"\n", StringifyBin(context->CKAID_).c_str(),
+ StringifyBin(context->CKAID_, false).c_str());
+ }
if (!context->silent_ && !context->verifyContext_)
{