jocover
jocover
i'm using https://github.com/jocover/hackrf ,this fork support windows thread,not required pthread-win32 and https://github.com/libusb/libusb building win32 multi-threaded (/MT) runtime static library,and link ExtIO_HackRF
I have not tested the ps3 USB protocol
I am using the windows version and it works https://github.com/PowerShell/Win32-OpenSSH/releases
1.create v3.ext file look like this ``` subjectKeyIdentifier=hash authorityKeyIdentifier=keyid,issuer basicConstraints=CA:FALSE keyUsage = digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment ``` 2.modify 12 line code add -extfile v3.ext command https://github.com/jocover/esp32_u2f/blob/main/main/cert/u2f_genkeys.sh#L12 ``` openssl x509 -req...
you can use espressif secure boot and flash encryption solutions, or use esp_secure_cert_mgr to manage certificates and keys, use the derived key generation algorithm based on esp_hmac but these will...
``` #!/bin/bash set -e if [ \! -e esp32key.pem ]; then openssl ecparam -genkey -out esp32key.pem -name prime256v1 fi openssl ec -in esp32key.pem -outform DER -no_public | tail -c +8...