mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-14 22:12:55 +00:00
Add an option to import a FreeOTP token file
This commit is contained in:
parent
363fc789ef
commit
37e303626f
12 changed files with 271 additions and 51 deletions
16
app/src/main/java/me/impy/aegis/ext/KeyConverter.java
Normal file
16
app/src/main/java/me/impy/aegis/ext/KeyConverter.java
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue