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

/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/mechanisms/oath/
H A DOath.java318 * @param secretStr A non null Base32 encoded secret key.
322 public OathBuilder setSecret(String secretStr) throws MechanismCreationException { argument
324 byte[] testSecret = Base32String.decode(secretStr);
328 throw new MechanismCreationException("Could not decode secret: " + secretStr, e);
330 throw new MechanismCreationException("Unexpected null whilst parsing secret: " + secretStr, e);

Completed in 37 milliseconds