Example usage for javax.crypto SecretKey interface-usage

List of usage examples for javax.crypto SecretKey interface-usage

Introduction

In this page you can find the example usage for javax.crypto SecretKey interface-usage.

Usage

From source file XORKey.java

public class XORKey implements SecretKey {
    int rotValue;

    XORKey(int value) {
        rotValue = value;
    }