Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public void deleteAll() {
editor.apply();
}

protected void initialize(FlutterSecureStorageConfig config, SecurePreferencesCallback<Void> callback) {
public void initialize(FlutterSecureStorageConfig config, SecurePreferencesCallback<Void> callback) {
this.config = config;
if (preferences != null) {
callback.onSuccess(null);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import android.os.Build;

enum KeyCipherAlgorithm {
public enum KeyCipherAlgorithm {
RSA_ECB_PKCS1Padding(KeyCipherImplementationRSA18::new, 1),
RSA_ECB_OAEPwithSHA_256andMGF1Padding(KeyCipherImplementationRSAOAEP::new, Build.VERSION_CODES.M),
AES_GCM_NoPadding(KeyCipherImplementationAES23::new, Build.VERSION_CODES.M); // Renamed from AES_GCM_NoPadding_BIOMETRIC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import android.os.Build;

enum StorageCipherAlgorithm {
public enum StorageCipherAlgorithm {
AES_CBC_PKCS7Padding(StorageCipherImplementationAES18::new, 1),
AES_GCM_NoPadding(null, Build.VERSION_CODES.M); // Implementation selected dynamically by factory

Expand Down
Loading