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

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

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

origin: com.madgag/scprov-jdk15on

/**
 * return an enumeration of the names of the available curves.
 *
 * @return an enumeration of the names of the available curves.
 */
public static Enumeration getNames()
{
  Vector v = new Vector();
  
  addEnumeration(v, X962NamedCurves.getNames());
  addEnumeration(v, SECNamedCurves.getNames());
  addEnumeration(v, NISTNamedCurves.getNames());
  addEnumeration(v, TeleTrusTNamedCurves.getNames());
  return v.elements();
}
origin: com.madgag.spongycastle/core

/**
 * return an enumeration of the names of the available curves.
 *
 * @return an enumeration of the names of the available curves.
 */
public static Enumeration getNames()
{
  Vector v = new Vector();
  addEnumeration(v, X962NamedCurves.getNames());
  addEnumeration(v, SECNamedCurves.getNames());
  addEnumeration(v, NISTNamedCurves.getNames());
  addEnumeration(v, TeleTrusTNamedCurves.getNames());
  addEnumeration(v, ANSSINamedCurves.getNames());
  addEnumeration(v, GMNamedCurves.getNames());
  return v.elements();
}
org.spongycastle.asn1.secSECNamedCurvesgetNames

Javadoc

returns an enumeration containing the name strings for curves contained in this structure.

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.
  • getOID
    return the object identifier signified by the passed in name. Null if there is no object identifier

Popular in Java

  • Updating database using SQL prepared statement
  • getSharedPreferences (Context)
  • setScale (BigDecimal)
  • requestLocationUpdates (LocationManager)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • JTable (javax.swing)
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Best IntelliJ 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