Skip to content
/ Shield Public

Scan files. Encrypt and decrypt data. Check if your credentials were pwned.

Notifications You must be signed in to change notification settings

AhmedOS/Shield

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🛡Shield

This app has three main functionalities:

  • Scan file for viruses.
  • Check if your email, account or password has been compromised in a data breach.
  • Encrypt and decrypt files using a password.

Scan File:

First, the user pick a file from his files to scan, then it get uploaded to be scanned. Next, the user can check scan report at the results tab. Scan report is persistent on the device once it get fetched. This service is provided by VirusTotal API.

Data Breach:

Using haveibeenpwned database and API, the user can check if his email account or password has been compromised in a data breach or not. The process of checking for a compromised passwords is very secure and it doesn't send your password or its hash over the air, instead, it uses only the first five characters of its SHA-1 hash for the checking process. How?

Files Encryption:

This feature allows a user to encrypt a file using a password and decrypt it later using the same password. The SHA256 hash of a password is used as a key for the AES algorithm. Also, 128 of 256 bits from the key are used as an initialization vector for the AES. Encrypted and decrypted files are saved on the user device.

Dependencies

CocoaPods:

pod 'Alamofire'
pod 'SwiftyJSON'
pod 'CryptoSwift'

Disclaimer

Using this project in your "iOS Developer Nanodegree" will be considered as plagiarism, and it will lead to disqualifying you from the nanodegree.

About

Scan files. Encrypt and decrypt data. Check if your credentials were pwned.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages