check if the string is ASN.1 DER hexadecimal string
string
return true if the string is a ASN.1 DER hexadecimal string
isDER("020201ab") -> trueisDER("zzz") -> false // not hexadecimalisDER("020201") -> false // too shortisDER("020201abcd") -> false // too long Copy
isDER("020201ab") -> trueisDER("zzz") -> false // not hexadecimalisDER("020201") -> false // too shortisDER("020201abcd") -> false // too long
check if the string is ASN.1 DER hexadecimal string