FileDocCategorySizeDatePackage
RC5Parameters.javaAPI DocAzureus 3.0.3.4686Tue Jun 08 05:13:00 BST 2004org.bouncycastle.crypto.params

RC5Parameters

public class RC5Parameters extends Object implements org.bouncycastle.crypto.CipherParameters

Fields Summary
private byte[]
key
private int
rounds
Constructors Summary
public RC5Parameters(byte[] key, int rounds)

        if (key.length > 255)
        {
            throw new IllegalArgumentException("RC5 key length can be no greater than 255");
        }

        this.key = new byte[key.length];
        this.rounds = rounds;

        System.arraycopy(key, 0, this.key, 0, key.length);
    
Methods Summary
public byte[]getKey()

        return key;
    
public intgetRounds()

        return rounds;