rc2parameters.java
来自「这是一个基于java编写的torrent的P2P源码」· Java 代码 · 共 37 行
JAVA
37 行
package org.bouncycastle.crypto.params;
import org.bouncycastle.crypto.CipherParameters;
public class RC2Parameters
implements CipherParameters
{
private byte[] key;
private int bits;
public RC2Parameters(
byte[] key)
{
this(key, (key.length > 128) ? 1024 : (key.length * 8));
}
public RC2Parameters(
byte[] key,
int bits)
{
this.key = new byte[key.length];
this.bits = bits;
System.arraycopy(key, 0, this.key, 0, key.length);
}
public byte[] getKey()
{
return key;
}
public int getEffectiveKeyBits()
{
return bits;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?