Home | History | Annotate | Download | only in jsse

Lines Matching refs:pin

31  * This class represents a single entry in the pin file.
69 // entry must have a CN, an enforcement value, and at least one pin
71 throw new PinEntryException("Received malformed pin entry");
91 * Checks the given chain against the pin list corresponding to this entry.
93 * If the pin list does not contain the required certs and the enforcing field is true then
120 for (String pin : pins) {
121 validatePin(pin);
126 private static void validatePin(String pin) {
128 if (pin.length() != 128) {
129 throw new IllegalArgumentException("Pin is not a valid length");
133 new BigInteger(pin, 16);
135 throw new IllegalArgumentException("Pin is not a valid hex string", e);