shane-kearns

Results 3 issues of shane-kearns

The empty string is already treated as invalid by the supplied validators. It was incorrect to raise ValueError on construction since this requires users to pre-validate strings before passing to...

A ValueError is raised here if passing the empty string `''` since it is a false value. https://github.com/ypcrts/fqdn/blob/84290063933d4a17620e07dc6db8d8965d89d8c2/fqdn/__init__.py#L43 The correct line should read: ``` if not isinstance(fqdn, str): raise ValueError("fqdn...

Initially observed that some ECDSA certificates are considered to have invalid signatures by certvalidator but which are valid according to windows certutil.exe and openssl. The root cause is the marshalling...