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

org.cardanofoundation.cip30.ValidationError Maven / Gradle / Ivy

The newest version!
package org.cardanofoundation.cip30;

/**
 * {@code ValidationError} is an enum representing different errors that can occur
 * during the process of validation of a CIP-30 DataSignature returned by signData function.
 */
public enum ValidationError {

    /**
     * The instance when the reason why the signature is invalid is unknown.
     */
    UNKNOWN,

    /**
     * The instance when the signature do not comply with the CIP 30 specification format.
     */
    CIP8_FORMAT_ERROR,

    /**
     * The instance when the signature do not contain a public key.
     */
    NO_PUBLIC_KEY

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy