org.bouncycastle.operator.KeyWrapper.java Source code

Java tutorial

Introduction

Here is the source code for org.bouncycastle.operator.KeyWrapper.java

Source

package org.bouncycastle.operator;

import org.bouncycastle.asn1.x509.AlgorithmIdentifier;

public interface KeyWrapper {
    AlgorithmIdentifier getAlgorithmIdentifier();

    byte[] generateWrappedKey(GenericKey encryptionKey) throws OperatorException;
}