Searched defs:NamedCurve (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/ec/
H A DNamedCurve.java45 public final class NamedCurve extends ECParameterSpec { class in inherits:ECParameterSpec
53 // encoded form (as NamedCurve identified via OID)
56 private NamedCurve(String name, ObjectIdentifier oid, EllipticCurve curve, method in class:NamedCurve
67 // Return a NamedCurve for the specified OID/name or null if unknown.
70 NamedCurve spec = oidMap.get(name);
74 // Return a NamedCurve for the specified OID or null if unknown.
107 private static final Map<String,NamedCurve> oidMap =
108 new LinkedHashMap<String,NamedCurve>();
109 private static final Map<String,NamedCurve> nameMap =
110 new HashMap<String,NamedCurve>();
[all...]

Completed in 797 milliseconds