Skip to content

Instantly share code, notes, and snippets.

View mightyfrog's full-sized avatar

Shigehiro Soejima mightyfrog

View GitHub Profile
@mightyfrog
mightyfrog / winzipaes.md
Last active March 21, 2017 20:14
winzipaes sample code

###winzipaes

how to zip

final String path = "/data/data/package-name/databases/my.db";
final File dbFile = new File(path);
final File file = new File(backupRoot, "db.zip");
AesZipFileEncrypter ze = null;
try {
    final AESEncrypter aesEncrypter = new AESEncrypterBC();