You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The implementations of From<[CustomType]> for Attribute/Extension can fail if bad data is provided,
crashing the program. It is better to use TryFrom<[CustomType]> for Attribute/Extension, which will
return a Result<[CustomType], Error> instead of panicking.
The text was updated successfully, but these errors were encountered:
I misread and/or misinterpreted information from RFC5280, describing the KeyUsage extension. This PR properly implements the KeyUsage extension as intended in RFC5280 (closes#28), closes#29, re-exports `der` and `spki` and makes errors a little nicer.
The implementations of From<[CustomType]> for Attribute/Extension can fail if bad data is provided,
crashing the program. It is better to use TryFrom<[CustomType]> for Attribute/Extension, which will
return a Result<[CustomType], Error> instead of panicking.
The text was updated successfully, but these errors were encountered: