mirror of
https://github.com/SimplexDevelopment/FreedomNetworkSuite.git
synced 2025-07-12 06:28:34 +00:00
13 lines
253 B
Java
13 lines
253 B
Java
package me.totalfreedom.security;
|
|
|
|
public interface Verification
|
|
{
|
|
public boolean verify(String input);
|
|
|
|
public String getVerificationMessage();
|
|
|
|
public String getVerificationFailedMessage();
|
|
|
|
public String generateVerificationCode();
|
|
}
|