Tabnine Logo
SECNamedCurves.getOID
Code IndexAdd Tabnine to your IDE (free)

How to use
getOID
method
in
org.spongycastle.asn1.sec.SECNamedCurves

Best Java code snippets using org.spongycastle.asn1.sec.SECNamedCurves.getOID (Showing top 4 results out of 315)

origin: com.madgag.spongycastle/core

public static X9ECParameters getByName(
  String name)
{
  ASN1ObjectIdentifier oid = getOID(name);
  return oid == null ? null : getByOID(oid);
}
origin: com.madgag/scprov-jdk15on

public static ASN1ObjectIdentifier getNamedCurveOid(
  String name)
{
  ASN1ObjectIdentifier oid = X962NamedCurves.getOID(name);
  
  if (oid == null)
  {
    oid = SECNamedCurves.getOID(name);
    if (oid == null)
    {
      oid = NISTNamedCurves.getOID(name);
    }
    if (oid == null)
    {
      oid = TeleTrusTNamedCurves.getOID(name);
    }
    if (oid == null)
    {
      oid = ECGOST3410NamedCurves.getOID(name);
    }
  }
  return oid;
}

origin: com.madgag.spongycastle/core

oid = SECNamedCurves.getOID(name);
origin: com.madgag.spongycastle/prov

private static ASN1ObjectIdentifier lookupOidByName(String name)
{
  ASN1ObjectIdentifier oid = X962NamedCurves.getOID(name);
  if (oid == null)
  {
    oid = SECNamedCurves.getOID(name);
    if (oid == null)
    {
      oid = NISTNamedCurves.getOID(name);
    }
    if (oid == null)
    {
      oid = TeleTrusTNamedCurves.getOID(name);
    }
    if (oid == null)
    {
      oid = ECGOST3410NamedCurves.getOID(name);
    }
    if (oid == null)
    {
      oid = ANSSINamedCurves.getOID(name);
    }
    if (oid == null)
    {
      oid = GMNamedCurves.getOID(name);
    }
  }
  return oid;
}
org.spongycastle.asn1.secSECNamedCurvesgetOID

Javadoc

return the object identifier signified by the passed in name. Null if there is no object identifier associated with name.

Popular methods of SECNamedCurves

  • getByName
  • getByOID
    return the X9ECParameters object for the named curve represented by the passed in object identifier.
  • getName
    return the named curve name represented by the given object identifier.
  • getNames
    returns an enumeration containing the name strings for curves contained in this structure.

Popular in Java

  • Finding current android device location
  • scheduleAtFixedRate (Timer)
  • notifyDataSetChanged (ArrayAdapter)
  • addToBackStack (FragmentTransaction)
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • 14 Best Plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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