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

com.distrimind.bouncycastle.crypto.engines.Utils Maven / Gradle / Ivy

There is a newer version: 1.78.1
Show newest version
package com.distrimind.bouncycastle.crypto.engines;

import com.distrimind.bouncycastle.crypto.CryptoServicePurpose;

class Utils
{
    static CryptoServicePurpose getPurpose(boolean forEncryption)
    {
        return forEncryption ? CryptoServicePurpose.ENCRYPTION : CryptoServicePurpose.DECRYPTION;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy