We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description: When initializing ECSignature with wrong data, the conversion in ASN1.toASN1Element crashes for at
ECSignature
ASN1.toASN1Element
default: // octet string let (length, lengthOfLength) = readLength(data: data.advanced(by: 1))
Reproduce:
let signed = try ECSignature(asn1: Data(base64Encoded: "abcd")!)
Expected: ECSignature throws an error.
Actual: Program crashes with the following message: Thread 1: EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)
Thread 1: EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)
The text was updated successfully, but these errors were encountered:
Same here with ECPublicKey
Sorry, something went wrong.
No branches or pull requests
Description:
When initializing
ECSignature
with wrong data, the conversion inASN1.toASN1Element
crashes for atReproduce:
Expected:
ECSignature
throws an error.Actual:
Program crashes with the following message:
Thread 1: EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)
The text was updated successfully, but these errors were encountered: