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

/libcore/ojluni/src/main/java/java/security/spec/
H A DECGenParameterSpec.java44 * <code>stdName</code> in order to generate the corresponding
48 * @param stdName the standard name of the to-be-generated EC
50 * @exception NullPointerException if <code>stdName</code>
53 public ECGenParameterSpec(String stdName) { argument
54 if (stdName == null) {
55 throw new NullPointerException("stdName is null");
57 this.name = stdName;

Completed in 60 milliseconds