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
If one configures their environment with multiple identity blocks of different types, including the signing cert, the CA pool that is returned from .well-known/est/cacerts can have duplicate certificates listed. while that's not a big deal, it's not necessary.
It'd be better to de-dupe the certs as they are added to the pool.
If one configures their environment with multiple identity blocks of different types, including the signing cert, the CA pool that is returned from
.well-known/est/cacerts
can have duplicate certificates listed. while that's not a big deal, it's not necessary.It'd be better to de-dupe the certs as they are added to the pool.
Steps to reproduce
curl -sk https://"${ZITI_EDGE_CTRL_ADVERTISED_HOST_PORT}/.well-known/est/cacerts" | openssl base64 -d | openssl pkcs7 -inform DER -outform PEM -print_certs -text | grep -A1 'Serial Number'
same command, grepping for Subject: instead and sorted/counted:
The text was updated successfully, but these errors were encountered: