⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 keyparameter.java~

📁 KeePass for J2ME is a J2ME port of KeePass Password Safe, a free, open source, light-weight and easy
💻 JAVA~
字号:
package org.bouncycastle.crypto.params;import org.bouncycastle.crypto.CipherParameters;public class KeyParameter    implements CipherParameters{    private byte[]  key;    public KeyParameter(        byte[]  key)    {        this(key, 0, key.length);    }    public KeyParameter(        byte[]  key,        int     keyOff,        int     keyLen)    {        this.key = new byte[keyLen];        System.arraycopy(key, keyOff, this.key, 0, keyLen);    }    public byte[] getKey()    {        return key;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -