Java javax.crypto.spec IvParameterSpec fields, constructors, methods, implement or subclass

Example usage for Java javax.crypto.spec IvParameterSpec fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.crypto.spec IvParameterSpec.

The text is from its open source code.

Constructor

IvParameterSpec(byte[] iv)
Creates an IvParameterSpec object using the bytes in iv as the IV.
IvParameterSpec(byte[] iv, int offset, int len)
Creates an IvParameterSpec object using the first len bytes in iv, beginning at offset inclusive, as the IV.

Method

byte[]getIV()
Returns the initialization vector (IV).