Ryan Hurst

Results 412 comments of Ryan Hurst

@liaan do I understand correctly you think you found what the core issue was and are now able to use the library for your use case?

> @rmhrisk Any idea what ZXing.PDF417.Internal.PDF417ScanningDecoder.CODEWORD_SKEW_SIZE does ? I thought its the skewness of the row and bigger allow more skew? Reason, changed it to 1 now and decodes barcode...

Mind sending a PR with you’re changes so far?

@liaan if you do have fixes we would love to have them, we will find time to get back to this library again in the not so distant future.

Thanks for the bug, my theory is this is because Node runs in a single event loop. It's single threaded, and you only ever get that one thread. All of...

@microshine We should look at https://github.com/libuv/libuv when we have time to see if we can use this to address this gap.

So from https://opensource.apple.com/source/SmartCardServices/SmartCardServices-31/src/PKCS11/pkcs11t.h We see: ``` /* CKM_ECDSA_KEY_PAIR_GEN is deprecated in v2.11, * CKM_EC_KEY_PAIR_GEN is preferred */ #define CKM_ECDSA_KEY_PAIR_GEN 0x00001040 #define CKM_EC_KEY_PAIR_GEN 0x00001040 ``` You can see we have the...