Question:
Validation in this part of the code of repository https://github.com/JanssenProject/jans-auth-server is
```
if (!cn.equals(client.getClientId())) {
log.error("Client certificate CN does not match clientId. Reject call, CN: " + cn + ", clientId: " + client.getClientId());
}
```
Now, since the CN for our certificate was generated before we receive the client_id from the register API, how can they match? We would need to generate another certificate?
Thank you for your time.