honour the pass phrase cache TTL by running a timer and removing expired cached pass phrases

This commit is contained in:
Thialfihar
2010-05-16 13:17:45 +00:00
parent f94af3e4e6
commit 9855f4d144
4 changed files with 55 additions and 9 deletions

View File

@@ -41,6 +41,7 @@ import java.util.Date;
import java.util.GregorianCalendar;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Vector;
import java.util.regex.Pattern;
@@ -293,9 +294,26 @@ public class Apg {
if (cpp == null) {
return null;
}
// set it again to reset the cache life cycle
setCachedPassPhrase(realId, cpp.passPhrase);
return cpp.passPhrase;
}
public static void cleanUpCache(int ttl) {
long now = new Date().getTime();
Vector<Long> oldKeys = new Vector<Long>();
for (Map.Entry<Long, CachedPassPhrase> pair : mPassPhraseCache.entrySet()) {
if ((now - pair.getValue().timestamp) >= 1000 * ttl) {
oldKeys.add(pair.getKey());
}
}
for (long keyId : oldKeys) {
mPassPhraseCache.remove(keyId);
}
}
public static PGPSecretKey createKey(Context context,
int algorithmChoice, int keySize, String passPhrase,
PGPSecretKey masterKey)
@@ -1266,7 +1284,7 @@ public class Apg {
PGPSignatureGenerator signatureGenerator = null;
progress.setProgress(R.string.progress_preparingStreams, 5, 100);
// encryptFile and compress input file content
// encrypt and compress input file content
PGPEncryptedDataGenerator cPk =
new PGPEncryptedDataGenerator(symmetricAlgorithm, true, new SecureRandom(),
new BouncyCastleProvider());