Hi Kyle, I am using these blueprints, really helpful. Thank you. Please note the below changes I needed to make in parse_box_config.py
When using Popen function in def "convertCryptoKey" it errors out "file not found".
Fix
- add shell=True
- provide full path for openssl.exe and tempKey.txt
In def "modifyPkString", first decode the newKey - otherwise errors out "a bytes like object is required, not str"
Fix
3. withoutFirstLine = newKey.decode().split('\n')[1:]