- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
13 lines
231 B
Java
13 lines
231 B
Java
package com.amazonaws.internal.keyvaluestore;
|
|
|
|
import java.security.Key;
|
|
|
|
/* loaded from: classes.dex */
|
|
interface KeyProvider {
|
|
void deleteKey(String str);
|
|
|
|
Key generateKey(String str);
|
|
|
|
Key retrieveKey(String str);
|
|
}
|