pkcs11: Fix comment

Fixes: e9fa338e23 ("pkcs11: Improve detection of already unwrapped CKA_EC_POINTs")
This commit is contained in:
Tobias Brunner
2025-10-17 17:20:13 +02:00
parent 6b6bec7295
commit 7c74925fa1
@@ -686,7 +686,7 @@ static inline bool valid_ec_point_type_and_len(u_char type, size_t len)
/* fall-through */
case 0x02:
case 0x03:
/* uncompressed points */
/* compressed points */
return len > min_len && (len % min_multiple) == 0;
default:
return FALSE;