gnu.crypto.jce.spec

Class UMac32ParameterSpec

public class UMac32ParameterSpec extends Object implements AlgorithmParameterSpec

This class represents the parameters for the UMAC-32 message authentication code algorithm. In practice this means the Nonce material used to initialize the algorithm.

Version: $Revision: 1.2 $

Field Summary
protected byte[]nonce
The Nonce material.
Constructor Summary
UMac32ParameterSpec(byte[] nonce)
Create a new parameter instance.
Method Summary
byte[]getNonce()
Return the nonce material.

Field Detail

nonce

protected byte[] nonce
The Nonce material.

Constructor Detail

UMac32ParameterSpec

public UMac32ParameterSpec(byte[] nonce)
Create a new parameter instance.

Parameters: nonce The nonce material.

Method Detail

getNonce

public byte[] getNonce()
Return the nonce material.

Returns: The nonce material.

Copyright © 2001, 2002, 2003 Free Software Foundation, Inc. All Rights Reserved.