/Air-Explorer-Decrypter

Java API able to decrypt Air Explorer encrypted files

Primary LanguageJavaMIT LicenseMIT

Build Status Codecov license: MIT GitHub release (latest by date) Maven Central Github All Releases

Air Explorer Decrypter

Java API able to decrypts Air Explorer encrypted files. This project includes simple graphic client binaries.

Getting Started

Prerequisites

At least, Oracle JRE 1.8 is needed.

GUI Client

To run a GUI client just execute AirExplorerFileDecrypter-v1.1.jar file.
Download latest GUI client build

API Usage

Importing the library

Maven
<dependency>
  <groupId>com.github.proteus1989</groupId>
  <artifactId>AirExplorerDecrypter</artifactId>
  <version>1.0.1</version>
</dependency>
Gradle
implementation 'com.github.proteus1989:AirExplorerDecrypter:1.0.1'

Calling the API

  • Decrypting file name
AirExplorerDecrypterAPI.decryptName("encryptedFileName(.cloudencoded2)", "file_password")
  • Decrypting a file
AirExplorerDecrypterAPI.decrytp(new File("file_path"), "file_password")
AirExplorerDecrypterAPI.decrytp(new File("file_path"), new File("dst_folder"), "file_password")
AirExplorerDecrypterAPI.decrytp(your_input_stream, your_output_stream, "file_password")

Download latest API build

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE file for details

Acknowledgments

MS original PasswordDeriveBytes class contains a nonstandard extension of the PBKDF1 algorithm. Therefore, MS PasswordDeriveBytes is different of normal BKDF1. Special thanks to gilchris for Java PasswordDeriveBytes port. Available at https://github.com/gilchris/PasswordDeriveBytesForJava.