mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 23:32:06 -04:00
Right now if you to_json() an `OrderResource` and later deserialize it, the `AuthorizationResource` objects don't come back through the round-trip (they just get de-jsonified as frozendicts and worse, they can't even be passed to `AuthorizationResource.from_json` because frozendicts aren't dicts). In addition, the `csr_pem` field gets encoded as an array of integers, which definitely does not get de-jsonified into what we want. Fix these by adding an encoder to `authorizations` and encoder and decoder to `csr_pem`. |
||
|---|---|---|
| .. | ||
| testdata | ||
| challenges_test.py | ||
| client_test.py | ||
| crypto_util_test.py | ||
| errors_test.py | ||
| fields_test.py | ||
| jose_test.py | ||
| jws_test.py | ||
| messages_test.py | ||
| standalone_test.py | ||
| test_util.py | ||
| util_test.py | ||