gnu.crypto.jce.spec

Class UMac32ParameterSpec

Implemented Interfaces:
AlgorithmParameterSpec

public class UMac32ParameterSpec
extends java.lang.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.1 $

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 Details

nonce

protected byte[] nonce
The Nonce material.

Constructor Details

UMac32ParameterSpec

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

Parameters:
nonce - The nonce material.

Method Details

getNonce

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

Returns:
The nonce material.


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