Skip to content
This repository has been archived by the owner on Sep 2, 2021. It is now read-only.

Commit

Permalink
no one calls AES code anymore so remove it
Browse files Browse the repository at this point in the history
  • Loading branch information
iamironrabbit committed Nov 21, 2018
1 parent ea4347f commit 60b794e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import org.awesomeapp.messenger.ImApp;
import org.awesomeapp.messenger.model.Address;

import org.awesomeapp.messenger.util.AES_256_CBC;
import org.awesomeapp.messenger.util.LogCleaner;
import org.awesomeapp.messenger.util.OpenSSLPBEInputStream;
import org.awesomeapp.messenger.util.OpenSSLPBEOutputStream;
Expand Down Expand Up @@ -197,12 +196,13 @@ public SimplePropertiesStore(java.io.File storeFile, final String password, bool
}*/

/**
private void loadAES(final String password) throws IOException
{
String decoded;
decoded = AES_256_CBC.decrypt(mStoreFile, password);
mProperties.load(new ByteArrayInputStream(decoded.getBytes()));
}
}**/

public void setProperty(String id, String value) {
mProperties.setProperty(id, value);
Expand Down

0 comments on commit 60b794e

Please sign in to comment.