ec_privkey_import_der() has 8 distinct structural checks that reject
malformed DER private key encodings (wrong sequence tag, bad length
encoding, wrong version field, bad octet string tag/length, and
truncation at any point). None of these rejection paths were covered
by any existing test -- only the successful round-trip path was
exercised.
I fuzzed this function extensively (truncation at every length, single-bit mutation at every byte position, all under ASan/UBSan) and found no memory-safety or logic bugs -- the checks are correct as written. This PR only adds regression coverage so that a future refactor can't silently reintroduce a parsing bug here.