YUANSUYI

Results 3 comments of YUANSUYI

Still seeing this in 0.40.2 as well. commit=5e388e21c8ca6aa883dbcbe45c47f6fdd5116815, build date=2023-08-07T14:05:48Z, build source=binaryRelease, version=0.40.2, os=windows, arch=amd64, git version=2.34.1.windows.1

Would it be more appropriate to compare by bytes? ```rust let expected = String::from_utf8_lossy(&buffer); ``` will convert the single byte read from expected/*.txt to 3-bytes UTF8 string. As I understand,...

I encountered the same issue (Context already released), on Ubunt and Win11. modify the line 224 in PicoHSM.py ` self.__card = cardrequest.waitforcard().connection ` to `self.__card_service = cardrequest.waitforcard() self.__card = self.__card_service.connection...