Lokotech

WIC

Get it now:

Launch contest! Win 1 BTC

We put our money where our mouth is! If you are able to decrypt this hash, follow the instructions within and we will reward you with 1 Bitcoin!
The contest runs until 23.59 CET on the 24th of December 2024:

Key Features

U2FsdGVkX19XlosDipbK8U2YOe4+5l4bokbPJiiSDieTTmGo0wT+Xcn8Xb7iYRuk0AGalVqeNmd9n0bQrDoJw8OliEK35yMKNCYrIpVzsqy5h3osUAqVxcj9J4aoM8Or6hv9NvsN8DyjLR8ryZ/XH5/8sZNtCQ4OE3RWFvgjrRULnBOKA6mNnA7HWNAGcCYeWU67TImLPjZNW87oJh2TVpCdpp33l5q4rA6rfL75hiU=


We will require you to disclose the following: Personal information for reporting purposes, WIC version and devide, and proof of how you breached WIC (encrypted with the original password and # of iterations). Parental approval required for minors.

WIC stands out as an advanced solution for secure data transfer among diverse stakeholders, encompassing videos, audio files, images, documents, and plain text. It secures the confidentiality of your data throughout the transmission process. This adaptable platform proves invaluable across various industries, such as Law Firms, the Financial Sector, Law Enforcement, Military, Contractors, Search and Rescue (SAR) joint action forces, C-suite executives, and private individuals prioritising uncompromised privacy, to name a few. WIC is an all-encompassing platform that flexibly caters to the distinctive requirements of each industry.

1. Comprehensive Security: WIC employs state-of-the-art encryption algorithms to safeguard sensitive information. From videos, audio files, and images to documents, WIC ensures that your data remains confidential during transmission.

2. Effortless Multimedia Sharing: Beyond text and documents, WIC allows for the secure exchange of multimedia files, including videos and audio files. Users can transmit a wide range of data without compromising on security.

3. Password and Credential Sharing: Share usernames, passwords, and other critical credentials with confidence. WIC provides a secure channel for the seamless exchange of login information without compromising data integrity.

4. Cryptocurrency Seed Phrase Storage: WIC facilitates safe storage and backup of cryptocurrency recovery seed phrases, ensuring the protection of valuable digital assets. Users can confidently manage their crypto portfolios without concerns about security breaches.

5. KYC Passport Sharing: For compliance with Know Your Customer (KYC) regulations, WIC allows users to securely share passport information. This feature ensures regulatory compliance while preserving the privacy of individuals involved.

6. GDPR Compliance: WIC is designed with a focus on compliance with General Data Protection Regulation (GDPR) standards. Users can exchange information confidently, knowing that their data is handled in accordance with global privacy regulations.

7. User-Friendly Interface: WIC prioritises user experience, providing an intuitive and user-friendly interface. Encryption and decryption processes are streamlined, making it accessible for everyone, regardless of technical expertise.

8. Compatibility Across Platforms: WIC ensures compatibility by supporting various file types and operating systems. Whether on desktop or mobile, users can seamlessly encrypt and decrypt information on their preferred devices.

9. Multi-Industry Applicability: Tailored for Law Firms, Financial Institutions, Law Enforcement, Military, SAR joint forces, and private individuals, WIC is a versatile platform adaptable to the unique needs of each industry.

FAQ

How does WIC work?

WIC use the AES-256-CBC and SHA-256 for the PBKDF2 derivation.

WIC’s focus is to offer an user friendly, intuitive and compatible way to enable encryption and decryption for everyone. It is you that decide who to share the secret password and iterations, which are needed to decrypt your encryption. Not a communication channel, and not an app. This enable users of WIC to share encrypted data over unsecured channels, for example in an email, social media, messaging apps, etc. WIC can also be used for long-term storage of sensitive data.

Does WIC use servers?

NO!

You choose who you trust. WIC is made to send or store encrypted messages and files confidentially between two parties, independently of any third part.

I have forgotten my password. What can I do?

It is not possible to recover your password.

WIC doesn’t store passwords or PBKDF2 keys. If you lose your password and iterations used, you can’t decrypt the message or file.

How does Save Hints work?

Only you can save hints, if you choose to do so. Try it out!

Use Save Hints before or after encryption/decryption. Hints include the number of iterations, length of the password used, and plaintext or the Base64 encoded text. This can be helpful to remind you of the what, who, when and how. Saved Hints are stored in the local directory of the app and can be deleted at anytime.

How does WIC encrypt a message and/or file?

Messages and files are encrypted using AES-256-CBC.

WIC takes a password, a random generated salt and the iteration value to create a key to encrypt a message or file. For more information about PBKDF2, please look into the specification of RFC 2898.

Can WIC encrypt a message and/or file that already have been encrypted?

There is no limit for how many times a message and/or file can be encrypted.

The only limit is the ability to remember, as both password and iterations can change between each encryption.

Is WIC compatible with other encrypt/decrypt software?

Yes! WIC is compatible with OpenSSL.

You may decrypt and encrypt between WIC and OpenSSL. Encryption are made with the AES-256-CBC algorithm using SHA-256 digest for the PBKDF2 key derivation function, and your choice of iterations.

What is this Base64 encoded text?

Base64 encoding is a way to represent binary data using text.

Base64 is designed to carry binary data across channels that only support text content, like email, messages or similar channels.

How do I encrypted a WIC compatible message and/or file in OpenSSL?

Use the Base64 encoding switch/option in OpenSSL for messages.

<code>openssl enc -AES-256-CBC -a -salt -iter 10001 -md SHA-256 -in mymessage.txt -out encrypted-and-base64-encoded.enc</code><hr><code>openssl enc -AES-256-CBC -salt -iter 10001 -md SHA-256 -in confidential.pdf -out encrypted-file.WIC</code>

How do I decrypt a WIC message and/or file in OpenSSL?

Use the Base64 encoding switch/option in OpenSSL for decrypted messages.

<code>openssl enc -d -AES-256-CBC -a -salt -iter 10001 -md SHA-256 -in encrypted-and-encoded-in.WIC -out mymessage.txt</code><hr><code>openssl enc -d -AES-256-CBC -salt -iter 10001 -md SHA-256 -in encrypted-file.WIC -out confidiential.pdf</code>