Lines Matching refs:mechInfo
115 display_mech_info(CK_MECHANISM_INFO *mechInfo) in display_mech_info() argument
120 (void) printf("%-4ld %-4ld ", mechInfo->ulMinKeySize, in display_mech_info()
121 mechInfo->ulMaxKeySize); in display_mech_info()
124 (mechInfo->flags & CKF_HW) ? "X" : ".", in display_mech_info()
125 (mechInfo->flags & CKF_ENCRYPT) ? "X" : ".", in display_mech_info()
126 (mechInfo->flags & CKF_DECRYPT) ? "X" : ".", in display_mech_info()
127 (mechInfo->flags & CKF_DIGEST) ? "X" : ".", in display_mech_info()
128 (mechInfo->flags & CKF_SIGN) ? "X" : ".", in display_mech_info()
129 (mechInfo->flags & CKF_SIGN_RECOVER) ? "X" : ".", in display_mech_info()
130 (mechInfo->flags & CKF_VERIFY) ? "X" : ".", in display_mech_info()
131 (mechInfo->flags & CKF_VERIFY_RECOVER) ? "X" : ".", in display_mech_info()
132 (mechInfo->flags & CKF_GENERATE) ? "X" : ".", in display_mech_info()
133 (mechInfo->flags & CKF_GENERATE_KEY_PAIR) ? "X" : ".", in display_mech_info()
134 (mechInfo->flags & CKF_WRAP) ? "X" : ".", in display_mech_info()
135 (mechInfo->flags & CKF_UNWRAP) ? "X" : ".", in display_mech_info()
136 (mechInfo->flags & CKF_DERIVE) ? "X" : ".", in display_mech_info()
137 (mechInfo->flags & ec_flags) ? "X" : "."); in display_mech_info()