net.y3n20u.rfc2898
クラス Pbkdf2

java.lang.Object
  上位を拡張 net.y3n20u.rfc2898.Pbkdf2

public class Pbkdf2
extends Object

defined in RFC2898.

作成者:
y3n20u@gmail.com

コンストラクタの概要
Pbkdf2()
           
Pbkdf2(PseudorandomFunction prf)
           
 
メソッドの概要
 byte[] deriveKey(byte[] p, byte[] s, int c, int dkLen)
           
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

Pbkdf2

public Pbkdf2()

Pbkdf2

public Pbkdf2(PseudorandomFunction prf)
メソッドの詳細

deriveKey

public byte[] deriveKey(byte[] p,
                        byte[] s,
                        int c,
                        int dkLen)
パラメータ:
p - password, an octet string.
s - salt, an octet string.
c - iteration count, a positive integer.
dkLen - intended length in octets of the derived key, a positive integer, at most (2^32-1) * hLen.
戻り値: