congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
RSABlindedEngine
Code IndexAdd Tabnine to your IDE (free)

How to use
RSABlindedEngine
in
org.spongycastle.crypto.engines

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

origin: com.madgag.spongycastle/prov

  public nonePSS()
  {
    super(new RSABlindedEngine(), null, true);
  }
}
origin: com.madgag.spongycastle/prov

  public SHA1withRSA()
  {
    super(new RSABlindedEngine(), PSSParameterSpec.DEFAULT);
  }
}
origin: com.madgag.spongycastle/prov

  public NoPadding()
  {
    super(new RSABlindedEngine());
  }
}
origin: com.madgag/scprov-jdk15on

  public SHA1withRSA()
  {
    super(new RSABlindedEngine(), PSSParameterSpec.DEFAULT);
  }
}
origin: com.madgag/scprov-jdk15on

  public PSSwithRSA()
  {
    super(new RSABlindedEngine(), null);
  }
}
origin: com.madgag.spongycastle/core

  protected AsymmetricBlockCipher createRSAImpl()
  {
    /*
     * RFC 5246 7.4.7.1. Implementation note: It is now known that remote timing-based attacks
     * on TLS are possible, at least when the client and server are on the same LAN.
     * Accordingly, implementations that use static RSA keys MUST use RSA blinding or some other
     * anti-timing technique, as described in [TIMING].
     */
    return new PKCS1Encoding(new RSABlindedEngine());
  }
}
origin: com.madgag.spongycastle/prov

  public PKCS1v1_5Padding()
  {
    super(new PKCS1Encoding(new RSABlindedEngine()));
  }
}
origin: com.madgag.spongycastle/prov

  public ISO9796d1Padding()
  {
    super(new ISO9796d1Encoding(new RSABlindedEngine()));
  }
}
origin: com.madgag/scprov-jdk15on

  public ISO9796d1Padding()
  {
    super(new ISO9796d1Encoding(new RSABlindedEngine()));
  }
}
origin: com.madgag.spongycastle/prov

  public PKCS1v1_5Padding_PrivateOnly()
  {
    super(false, true, new PKCS1Encoding(new RSABlindedEngine()));
  }
}
origin: com.madgag.spongycastle/prov

  public PKCS1v1_5Padding_PublicOnly()
  {
    super(true, false, new PKCS1Encoding(new RSABlindedEngine()));
  }
}
origin: com.madgag.spongycastle/prov

  public WhirlpoolWithRSAEncryption()
  {
    super(new WhirlpoolDigest(), new RSABlindedEngine());
  }
}
origin: com.madgag.spongycastle/prov

  public SHA512()
  {
    super(NISTObjectIdentifiers.id_sha512, DigestFactory.createSHA512(), new PKCS1Encoding(new RSABlindedEngine()));
  }
}
origin: com.madgag.spongycastle/prov

  public MD5()
  {
    super(PKCSObjectIdentifiers.md5, DigestFactory.createMD5(), new PKCS1Encoding(new RSABlindedEngine()));
  }
}
origin: com.madgag.spongycastle/prov

  public SHA512_256WithRSAEncryption()
  {
    super(DigestFactory.createSHA512_256(), new RSABlindedEngine());
  }
}
origin: com.madgag.spongycastle/prov

  public SHA256WithRSAEncryption()
  {
    super(DigestFactory.createSHA256(), new RSABlindedEngine());
  }
}
origin: com.madgag.spongycastle/prov

  public SHA1()
  {
    super(OIWObjectIdentifiers.idSHA1, DigestFactory.createSHA1(), new PKCS1Encoding(new RSABlindedEngine()));
  }
}
origin: com.madgag.spongycastle/prov

  public SHA224()
  {
    super(NISTObjectIdentifiers.id_sha224, DigestFactory.createSHA224(), new PKCS1Encoding(new RSABlindedEngine()));
  }
}
origin: com.madgag.spongycastle/prov

  public SHA384()
  {
    super(NISTObjectIdentifiers.id_sha384, DigestFactory.createSHA384(), new PKCS1Encoding(new RSABlindedEngine()));
  }
}
origin: com.madgag.spongycastle/prov

  public SHA512_224()
  {
    super(NISTObjectIdentifiers.id_sha512_224, DigestFactory.createSHA512_224(), new PKCS1Encoding(new RSABlindedEngine()));
  }
}
org.spongycastle.crypto.enginesRSABlindedEngine

Javadoc

this does your basic RSA algorithm with blinding

Most used methods

  • <init>

Popular in Java

  • Reactive rest calls using spring rest template
  • putExtra (Intent)
  • scheduleAtFixedRate (Timer)
  • requestLocationUpdates (LocationManager)
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • ImageIO (javax.imageio)
  • Top 12 Jupyter Notebook extensions
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