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

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

Best Java code snippets using org.spongycastle.crypto.engines.RSABlindedEngine.<init> (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.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.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()));
  }
}
origin: com.madgag.spongycastle/prov

  public SHA3_256()
  {
    super(NISTObjectIdentifiers.id_sha3_256, DigestFactory.createSHA3_256(), new PKCS1Encoding(new RSABlindedEngine()));
  }
}
origin: com.madgag.spongycastle/prov

  public SHA3_384()
  {
    super(NISTObjectIdentifiers.id_sha3_384, DigestFactory.createSHA3_384(), new PKCS1Encoding(new RSABlindedEngine()));
  }
}
origin: com.madgag.spongycastle/prov

  public RIPEMD256()
  {
    super(TeleTrusTObjectIdentifiers.ripemd256, new RIPEMD256Digest(), new PKCS1Encoding(new RSABlindedEngine()));
  }
}
origin: com.madgag.spongycastle/prov

  public SHA512_224withRSA()
  {
    super(new RSABlindedEngine(), new PSSParameterSpec("SHA-512(224)", "MGF1", new MGF1ParameterSpec("SHA-512(224)"), 28, 1));
  }
}
origin: com.madgag.spongycastle/prov

  public SHA3_224withRSA()
  {
    super(new RSABlindedEngine(), new PSSParameterSpec("SHA3-224", "MGF1", new MGF1ParameterSpec("SHA3-224"), 28, 1));
  }
}
org.spongycastle.crypto.enginesRSABlindedEngine<init>

Popular methods of RSABlindedEngine

    Popular in Java

    • Making http post requests using okhttp
    • scheduleAtFixedRate (ScheduledExecutorService)
    • requestLocationUpdates (LocationManager)
    • getSharedPreferences (Context)
    • GridLayout (java.awt)
      The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
    • BufferedReader (java.io)
      Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
    • Connection (java.sql)
      A connection represents a link from a Java application to a database. All SQL statements and results
    • TimerTask (java.util)
      The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
    • Annotation (javassist.bytecode.annotation)
      The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
    • Table (org.hibernate.mapping)
      A relational table
    • 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