All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.operator.GenericKey Maven / Gradle / Ivy

The newest version!
package org.bouncycastle.operator;

public class GenericKey
{
    private Object representation;

    public GenericKey(Object representation)
    {
        this.representation = representation;
    }

    public Object getRepresentation()
    {
        return representation;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy