org.springframework 不包含 CIpher



我想从org.springframework依赖项导入密码。我像下面这样导入它,

import org.springframework.security.crypto.keygen.KeyGenerators;
import org.springframework.security.crypto.encrypt.CipherUtils.Cipher;
import org.springframework.security.crypto.encrypt.SecretKey;

但是有一个错误说,

Error:(25,63) java: package org.springframework.security.crypto.encrypt.CipherUtils does not exist

然后我试了

import org.springframework.security.crypto.keygen.KeyGenerators;
import org.springframework.security.crypto.encrypt.Cipher;
import org.springframework.security.crypto.encrypt.SecretKey;

我仍然收到以下错误,

Error:(25,51) java: cannot find symbol

我希望密码使用加密和解密我的 otp 和到期日期。如何从 org.springframework 导入密码

org.springframework.security.crypto.encrypt.CipherUtils不包含内部类Cipher,包org.springframework.security.crypto.encrypt也不包含类Cipher

org.springframework.security.crypto.encrypt.CipherUtils使用javax.crypto.Cipher类,您也必须使用此类。

错误:(25,63( java: package org.springframework.security.crypto.encrypt.CipherUtils 不存在

您会收到此错误,因为 CipherUtils 是一个类。

如果要使用此类,请使用import org.springframework.security.crypto.encrypt.CipherUtils;

错误:(25,51( java: 找不到符号

您收到此错误,因为此处不存在密码

import org.springframework.security.crypto.encrypt.Cipher;.

使用import javax.crypto.Cipher;

相关内容

  • 没有找到相关文章

最新更新