Petr Mikhalitsyn

Results 29 comments of Petr Mikhalitsyn

self.info.vs_toolset_incompatible() resolve my problem, but I noticed another bug: ```console $ mkdir -p test && conan export-pkg -bf test -s compiler.toolset=v142 -s compiler.version=15 test_conanfile.py test/test@ -f [HOOK - attribute_checker.py] pre_export():...

Sorry for too late answer, I was at vocation) I got you! Thanks!

> First of all, PKCS#11 has the following paragraph describing C_GetSlotList, which basically means that two subsequent calls don't need to corellate: I know it. Behaviour with single call of...

Rutoken smart cards work perfectly with rutoken pkcs11 lib. It should work with opensc's pkcs11 if it doesn't inited with pkcs15-tool

> Sorry, I didn't understand that last part. Do you mean that there is some problem with rutoken when it was initialized with pkcs15-init which causes the card to not...

> So it seems that some of the PKCS#15 metadata is missing on the token. yeah. Token is not inited by pkcs15-tool

ok. But, unfortunately, I don't have a time to make a PR that fix our driver. I just thought, that problem is not in our driver, but in internal logic...

Thank you for answer! It works, but I can't retrieve the package_folder from json output for this kind of dependencies: ```json { "graph": { "nodes": { "0": { "ref": "pkg_a/0.0.1",...

no, I'm using conan install: ```python # conanfileA.py from conan import ConanFile class RtPkcs11EcpConanfile(ConanFile): settings = "os", "arch", "build_type" name="pkg_a" version="0.0.1" def build_requirements(self): self.requires("pkg_b/0.0.1", visible=False, headers=False, libs=False, run=False) ``` ```python...