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
{{ message }}
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.
FreeIPA sends certificates in a special way. In the schema they are either string or Certificate. In the response they are sent as {"__base64__": "thecertinbase64"}. The current implementation either crashes or returns an interface{}. It should not crash and should return string or byte[].
Yes, there is a reason. Certificates are actually modeled as maps with a `__base64__` subfield, so casting them as strings failed.
FreeIPA sends certificates in a special way. In the schema they are either
string
orCertificate
. In the response they are sent as{"__base64__": "thecertinbase64"}
. The current implementation either crashes or returns aninterface{}
. It should not crash and should returnstring
orbyte[]
.Originally posted by @raphink in #7
The text was updated successfully, but these errors were encountered: