我在jasypt.org上找到了这段代码 我想知道encryptor.setPassword(" jasypt")的作用。 它是加密密钥吗?如果我没有设置密码怎么办? 我一直在阅读" Keys",我该如何找到它?我在哪里安全地存储这个密钥?
PooledPBEStringEncryptor encryptor = new PooledPBEStringEncryptor();
encryptor.setPoolSize(4); // This would be a good value for a 4-core system
encryptor.setPassword("jasypt");
encryptor.setAlgorithm("PBEWithMD5AndTripleDES");