mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix code
This commit is contained in:
@@ -32,11 +32,6 @@ public class BCCipher implements Cipher, Wrapper<BufferedBlockCipher> {
|
|||||||
*/
|
*/
|
||||||
private final BufferedBlockCipher blockCipher;
|
private final BufferedBlockCipher blockCipher;
|
||||||
|
|
||||||
@Override
|
|
||||||
public BufferedBlockCipher getRaw() {
|
|
||||||
return this.blockCipher;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 构造
|
* 构造
|
||||||
*
|
*
|
||||||
@@ -46,6 +41,11 @@ public class BCCipher implements Cipher, Wrapper<BufferedBlockCipher> {
|
|||||||
this.blockCipher = blockCipher;
|
this.blockCipher = blockCipher;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BufferedBlockCipher getRaw() {
|
||||||
|
return this.blockCipher;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getAlgorithmName() {
|
public String getAlgorithmName() {
|
||||||
return this.blockCipher.getUnderlyingCipher().getAlgorithmName();
|
return this.blockCipher.getUnderlyingCipher().getAlgorithmName();
|
||||||
|
Reference in New Issue
Block a user