
org.bouncycastle.crypto.engines.Utils Maven / Gradle / Ivy
package org.bouncycastle.crypto.engines;
import org.bouncycastle.crypto.CryptoServicePurpose;
class Utils
{
static CryptoServicePurpose getPurpose(boolean forEncryption)
{
return forEncryption ? CryptoServicePurpose.ENCRYPTION : CryptoServicePurpose.DECRYPTION;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy