Tony Arcieri
Tony Arcieri
Fixed in #1357 I believe
> This project's implementation - like mine - assumes the no fractional seconds allowed definition of GeneralizedTime per RFCs like 5280. It’s a bit more than that… it’s a MUST...
One thing that could work without compromising RFC5280 use cases is having a second type like `GeneralizedTimeFrac` which supports fractional seconds. It could have `GeneralizedTime` and `Option` fields and reuse...
We already define `Time` here: https://github.com/RustCrypto/formats/blob/master/x509/src/time.rs#L25 And again, that definition needs to reflect the MUST NOT from RFC5280. I'm much more worried about trying to shoehorn fractional seconds into the...
Closing this as not planned
> support generic string wrapper around `::printable_string()`, `::utf8_string()`, `::ia5_string()`, etc. Yes, I mentioned as much in #692. I definitely want to address this before cutting another release of `der` as...
@lumag yeah, `StrSlice` could only work for cases that are subsets of ASCII/UTF-8, but I think it would still make sense to use it for those. Notably I think `Ia5StringRef`...
If it were the `Deref` target for ASCII-like encodings it would have to be
A trait would be an alternative option. You'd still need to retain the inherent methods on `Ia5StringRef` for now in order to avoid a breaking change, however.