public static uint ReadUInt32(this AsnReader reader, Asn1Tag tag)
 {
     if (reader.TryReadUInt32(tag, out uint value))
     {
         return(value);
     }
     throw new CryptographicException(SR.Cryptography_Der_Invalid_Encoding);
 }