Replies: 1 comment
-
Hello, I think it is possible to fully automate this, but I am not sure as I need some code examples or example repository to try it out myself. Your flow looks like this:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello folks!
First of all, thanks for the great work!
I unfortunately have some really nasty scalability requirements on a project and even with a lot of reading I'm still pending to start a discussion. Hope it can help me and others =)
I made a mTLS communication with a server using Spring RestTemplate. It is working flawlessly. Great.
But now we have a scalability problem. We have multiple customers, each one receives a client_id and a temporary token from a service provider (by mail).
I'm building manually each .CSR file (with the mail information) and sending it, by postman to their API. They send me back a CRT response. I'm building it to a file and importing it to a keystore, using keytool. One by one.
So my first answer is related to this (I'm trying bouncy castle right now). Can I turn this process programmable?
Also, I need to store this CRT responses on a keystore? I can't simply store it in memory?
Thanks! Sorry if there is any basic knowledge missing, I'm trying really hard to understand it all.
Beta Was this translation helpful? Give feedback.
All reactions