msetina

Results 15 issues of msetina

Using rp2-pico-w-20220831-unstable-v1.19.1-357-gaf100b702 with code: self._wlan.config(ssid=self._ssid, channel=self._channel,security=0) SSID is not set on WLAN security is on WPA2 channel is set correctly

bug

listing objects in session on Slovenian EOI raises exception: ValueError: 9 is not a valid ObjectClass

PROFILE ObjectClass was missing as one of object classes found in OpenSC

Documentation does not indicate how to prepare required libraries. After following build instructions, eOI card was not recognised. Going over source, I found that OPENPACE is required. Installing openpace does...

Python wrapper PyKCS11 has broken link. Can python-pkcs11 be added to Python wrappers. It looks good and has nice documentation.

I have a card with 2 apps. One should be without login and one with login. First app is not login, second app should be used with login. First app...

I found a old ActivIdentity Activkey_Sim USB dongle. I was happy to see it supported by some parts of OpenSC. When trying to erase it with pkcs15-init -E . I...

``` def _check_key_value_matches_cert_public_key(self, key_value, public_key, signature_alg: SignatureMethod): if signature_alg.name.startswith("ECDSA_") and isinstance( public_key.to_cryptography_key(), ec.EllipticCurvePublicKey ): ec_key_value = self._find(key_value, "dsig11:ECKeyValue") named_curve = self._find(ec_key_value, "dsig11:NamedCurve") public_key = self._find(ec_key_value, "dsig11:PublicKey") key_data = b64decode(public_key.text)[1:] x...

If you set cert parameter of sign call to empty string, signature will produce an empty in KeyInfo and even ignore public key data. Removing cert parameter form sign call...

Fix for #246. I found out that if I have multiple certificates in cert parameter to sign, the digest check would fail. Since it was signed with signxml, it was...