Home | History | Annotate | Download | only in handshake

Lines Matching refs:identifier

58     public final int identifier;
61 private EllipticCurve(int identifier, String name) {
62 this.identifier = identifier;
66 public static EllipticCurve fromIdentifier(int identifier) {
68 if (curve.identifier == identifier) {
72 throw new AssertionError("Unknown curve identifier " + identifier);
79 sb.append(identifier);