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

com.virgilsecurity.secureenclave.exceptions.ASN1Exception Maven / Gradle / Ivy

Go to download

Virgil is a stack of security libraries (ECIES with Crypto Agility wrapped in Virgil Cryptogram) and all the necessary infrastructure to enable seamless, end-to-end encryption for any application, platform or device. Learn about Virgil Crypto Library https://virgilsecurity.com/api-docs/java-android/crypto-library

The newest version!
package com.virgilsecurity.secureenclave.exceptions;

import java.io.IOException;

/**
 * Created by teonit on 04.04.17.
 */

public class ASN1Exception extends RuntimeException {

    public ASN1Exception(String message) {
        super(message);
    }

    public ASN1Exception(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy