英文:
About Spring Boot encrypt/decrypt functions
问题
我正在寻求关于Spring Boot CLI命令encrypt/decrypt的一些建议:
我理解这些功能需要Java密码扩展(Java Cryptography Extension)。
它们提供对称加密。
有人知道使用了什么类型的算法吗?
是否可以进行配置?
英文:
I'm looking for some advice about Spring boot CLI command encrypt/decrypt:
I understand that Java Cryptography Extension is required for those functions.
They provide symmetric encryption.
Does anyone know what kind of algorithm is used?
Is it possible to configure this?
答案1
得分: 1
我会假设它依赖于Spring的默认加密器,根据官方Spring文档,这将是256位AES与PBKDF2。
英文:
I would assume that it relies on Spring's default Encryptors, which according to the official Spring documentation would be 256-bit AES with PBKDF2.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论