Tabnine Logo
BlockCipher.getAlgorithmName
Code IndexAdd Tabnine to your IDE (free)

How to use
getAlgorithmName
method
in
org.spongycastle.crypto.BlockCipher

Best Java code snippets using org.spongycastle.crypto.BlockCipher.getAlgorithmName (Showing top 20 results out of 315)

origin: com.madgag/sc-light-jdk15on

/**
 * return the algorithm name and mode.
 *
 * @return the name of the underlying algorithm followed by "/PGPCFB"
 * and the block size in bits.
 */
public String getAlgorithmName()
{
  return cipher.getAlgorithmName() + "/OpenPGPCFB";
}

origin: com.madgag.spongycastle/core

/**
 * return the algorithm name and mode.
 *
 * @return the name of the underlying algorithm followed by "/GCTR"
 * and the block size in bits
 */
public String getAlgorithmName()
{
  return cipher.getAlgorithmName() + "/GCTR";
}
origin: com.madgag.spongycastle/core

/**
 * return the algorithm name and mode.
 *
 * @return the name of the underlying algorithm followed by "/OFB"
 * and the block size in bits
 */
public String getAlgorithmName()
{
  return cipher.getAlgorithmName() + "/OFB" + (blockSize * 8);
}
origin: com.madgag.spongycastle/core

/**
 * return the algorithm name and mode.
 *
 * @return the name of the underlying algorithm followed by "/OpenPGPCFB"
 * and the block size in bits.
 */
public String getAlgorithmName()
{
  return cipher.getAlgorithmName() + "/OpenPGPCFB";
}

origin: com.madgag.spongycastle/core

/**
 * return the algorithm name and mode.
 *
 * @return the name of the underlying algorithm followed by "/CBC".
 */
public String getAlgorithmName()
{
  return cipher.getAlgorithmName() + "/CBC";
}
origin: com.madgag.spongycastle/core

/**
 * return the algorithm name and mode.
 *
 * @return the name of the underlying algorithm followed by "/CFB"
 * and the block size in bits.
 */
public String getAlgorithmName()
{
  return cipher.getAlgorithmName() + "/CFB" + (blockSize * 8);
}
origin: com.madgag/sc-light-jdk15on

/**
 * return the algorithm name and mode.
 *
 * @return the name of the underlying algorithm followed by "/OFB"
 * and the block size in bits
 */
public String getAlgorithmName()
{
  return cipher.getAlgorithmName() + "/OFB" + (blockSize * 8);
}
origin: com.madgag.spongycastle/core

public String getAlgorithmName()
{
  return engine.getAlgorithmName() + "/KCCM";
}
origin: com.madgag.spongycastle/core

public String getAlgorithmName()
{
  return cipher.getAlgorithmName();
}
origin: com.madgag/sc-light-jdk15on

/**
 * return the algorithm name and mode.
 *
 * @return the name of the underlying algorithm followed by "/CFB"
 * and the block size in bits.
 */
public String getAlgorithmName()
{
  return cipher.getAlgorithmName() + "/CFB" + (blockSize * 8);
}
origin: com.madgag/sc-light-jdk15on

/**
 * return the algorithm name and mode.
 *
 * @return the name of the underlying algorithm followed by "/CFB"
 * and the block size in bits.
 */
public String getAlgorithmName()
{
  return cipher.getAlgorithmName() + "/CFB" + (blockSize * 8);
}
origin: com.madgag/sc-light-jdk15on

/**
 * return the algorithm name and mode.
 *
 * @return the name of the underlying algorithm followed by "/GCTR"
 * and the block size in bits
 */
public String getAlgorithmName()
{
  return cipher.getAlgorithmName() + "/GCTR";
}
origin: com.madgag/sc-light-jdk15on

/**
 * return the algorithm name and mode.
 *
 * @return the name of the underlying algorithm followed by "/CBC".
 */
public String getAlgorithmName()
{
  return cipher.getAlgorithmName() + "/CBC";
}
origin: com.madgag/sc-light-jdk15on

public String getAlgorithmName()
{
  return engine.getAlgorithmName();
}
origin: com.madgag/sc-light-jdk15on

public String getAlgorithmName()
{
  return cipher.getAlgorithmName();
}
origin: com.madgag.spongycastle/core

/**
 * return the algorithm name and mode.
 *
 * @return the name of the underlying algorithm followed by "/CFB"
 * and the block size in bits.
 */
public String getAlgorithmName()
{
  return cipher.getAlgorithmName() + "/CFB" + (blockSize * 8);
}
origin: telehash/telehash-java

@Override
public String getAlgorithmName()
{
  return cipher.getAlgorithmName() + "/GCM";
}
origin: com.madgag.spongycastle/core

private int getMaxSecurityStrength(BlockCipher cipher, int keySizeInBits)
{
  if (isTDEA(cipher) && keySizeInBits == 168)
  {
    return 112;
  }
  if (cipher.getAlgorithmName().equals("AES"))
  {
    return keySizeInBits;
  }
  return -1;
}
origin: com.madgag.spongycastle/prov

public String getAlgorithmName()
{
  return cipher.getUnderlyingCipher().getAlgorithmName();
}
origin: com.madgag/scprov-jdk15on

public String getAlgorithmName()
{
  return cipher.getUnderlyingCipher().getAlgorithmName();
}
org.spongycastle.cryptoBlockCiphergetAlgorithmName

Javadoc

Return the name of the algorithm the cipher implements.

Popular methods of BlockCipher

  • getBlockSize
    Return the block size for this cipher (in bytes).
  • init
    Initialise the cipher.
  • processBlock
    Process one block of input from the array in and write it to the out array.
  • reset
    Reset the cipher. After resetting the cipher is in the same state as it was after the last init (if

Popular in Java

  • Updating database using SQL prepared statement
  • runOnUiThread (Activity)
  • compareTo (BigDecimal)
  • setRequestProperty (URLConnection)
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • JComboBox (javax.swing)
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now