Add an option to import a FreeOTP token file

This commit is contained in:
Alexander Bakker 2017-08-26 15:47:57 +02:00
parent 363fc789ef
commit 37e303626f
12 changed files with 271 additions and 51 deletions

View file

@ -0,0 +1,16 @@
package me.impy.aegis.ext;
import java.io.InputStream;
import java.util.List;
import me.impy.aegis.KeyProfile;
public abstract class KeyConverter {
protected InputStream _stream;
public KeyConverter(InputStream stream) {
_stream = stream;
}
public abstract List<KeyProfile> convert() throws Exception;
}