Interface NamedCurveRegistry
- All Known Implementing Classes:
NamedCurveRegistryImpl
,NamedCurveRegistrySingleton
,StaticNamedCurveRegistry
public interface NamedCurveRegistry
A registry for named curves.
- Author:
- Martin Lindström (martin@idsec.se), Stefan Santesson (stefan@idsec.se)
-
Method Summary
Modifier and TypeMethodDescriptionGets aNamedCurve
based on its name.getCurve
(Predicate<NamedCurve> predicate) Gets aNamedCurve
based on the given predicate.getCurves
(Predicate<NamedCurve> predicate) Gets all curves that matches the given predicate.
-
Method Details
-
getCurve
Gets aNamedCurve
based on its name.- Parameters:
name
- the name- Returns:
- the NamedCurve or null if no match is found
-
getCurve
Gets aNamedCurve
based on the given predicate.- Parameters:
predicate
- the predicate- Returns:
- the first curve that matches the supplied predicate, or null if no matches are found
-
getCurves
Gets all curves that matches the given predicate.- Parameters:
predicate
- the predicate- Returns:
- a (possibly empty) list of NamedCurve objects
-