You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.
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:]
The text was updated successfully, but these errors were encountered:
Had same issue with convertCryptoKey returning a ByteArray and modifyPkString expecting a String. Added the decode() method to the array and then worked fine.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
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:]
The text was updated successfully, but these errors were encountered: