1

Is there any way to decrypt encrypted properties in Spring Cloud config Server in other projects?

For example, I want to decrypt "test" = "{chip}asdasdasd" without using the crypto endpoint of the spring cloud server.

Thank you in advance for your reply.

sehoon
  • 43
  • 6

1 Answers1

0

If you are using Spring Boot application as a client, it's easy, just add

encrypt:
  key: your_key

to bootsrap.yaml and Spring will handle everything else. Problems appear when you have other clients. Then you can try to find some libraries or create your own: Example for TypeScript

Javasick
  • 2,753
  • 1
  • 23
  • 35