The methods of Javax.Crypto.Mac are listed below. For a list of all members, see the Mac Members list.
See Also: Inherited members from Java.Lang.Object
| Clone() Clones this Mac instance and the underlying implementation. | ||
| DoFinal() Computes the digest of this MAC based on the data previously specified in Mac.Update(sbyte) calls. | ||
| DoFinal(byte[]) Computes the digest of this MAC based on the data previously specified on Mac.Update(sbyte) calls and on the final bytes specified by input (or based on those bytes only). | ||
| DoFinal(byte[], int) Computes the digest of this MAC based on the data previously specified in Mac.Update(sbyte) calls and stores the digest in the specified output buffer at offset outOffset. | ||
| static  | GetInstance(string) Creates a new Mac instance that provides the specified MAC algorithm. | |
| static  | GetInstance(string, Java.Security.Provider) Creates a new Mac instance that provides the specified MAC algorithm from the specified provider. | |
| static  | GetInstance(string, string) Creates a new Mac instance that provides the specified MAC algorithm from the specified provider. | |
| Init(Java.Security.IKey) Initializes this Mac instance with the specified key. | ||
| Init(Java.Security.IKey, Java.Security.Spec.IAlgorithmParameterSpec) Initializes this Mac instance with the specified key and algorithm parameters. | ||
| Reset() Resets this Mac instance to its initial state. | ||
| Update(Java.Nio.ByteBuffer) Updates this Mac instance with the data from the specified buffer, starting at Java.Nio.Buffer.Position, including the next Java.Nio.Buffer.Remaining bytes. | ||
| Update(byte[]) Copies the buffer provided as input for further processing. | ||
| Update(sbyte) Updates this Mac instance with the specified byte. | ||
| Update(byte[], int, int) Updates this Mac instance with the data from the specified buffer input from the specified offset and length len. | ||