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

com.box.sdk.EncryptionAlgorithm Maven / Gradle / Ivy

There is a newer version: 4.11.1
Show newest version
package com.box.sdk;

/**
 * Enum to identify algorithm for JWT.
 */
public enum EncryptionAlgorithm {

    /**
     * RSA with SHA 256.
     */
    RSA_SHA_256,

    /**
     * RSA with SHA 384.
     */
    RSA_SHA_384,

    /**
     * RSA with SHA 512.
     */
    RSA_SHA_512;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy