This commit is contained in:
Paul Reilly
2023-04-13 20:24:40 -05:00
commit 09bede768b
39 changed files with 1377 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package me.totalfreedom.security;
public interface Verification
{
public boolean verify(String input);
public String getVerificationMessage();
public String getVerificationFailedMessage();
public String generateVerificationCode();
}