mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-04-19 03:01:48 +08:00
fix code
This commit is contained in:
parent
ab6c3b3efc
commit
1097968126
@ -32,11 +32,6 @@ public class BCCipher implements Cipher, Wrapper<BufferedBlockCipher> {
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
@Override
|
||||
public BufferedBlockCipher getRaw() {
|
||||
return this.blockCipher;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getAlgorithmName() {
|
||||
return this.blockCipher.getUnderlyingCipher().getAlgorithmName();
|
||||
|
Loading…
x
Reference in New Issue
Block a user