This repository has been archived by the owner on Oct 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# LibCrypto | ||
|
||
**Cryptographic library for Java and JavaScript** | ||
|
||
## Overview | ||
|
||
`libcrypto` is a versatile cryptographic library designed to provide easy-to-use implementations of advanced cryptographic algorithms for both Java and JavaScript environments. The library focuses on three key cryptographic primitives: AES GCM for symmetric encryption, Argon2 for key derivation, and X25519 for elliptic curve Diffie-Hellman key exchange. | ||
|
||
### Features | ||
|
||
- **AES GCM Encryption** | ||
- Secure and efficient symmetric encryption using the AES block cipher in GCM (Galois/Counter Mode) mode. | ||
- **Argon2 Key Derivation** | ||
- A memory-hard key derivation function that provides resistance against both brute-force and side-channel attacks. | ||
- **X25519 Key Exchange** | ||
- Elliptic curve Diffie-Hellman key exchange for a secure key establishment in a public-key cryptography setting. | ||
|
||
## Documentation | ||
|
||
- [Java Documentation](/java#readme) | ||
- [JavaScript Documentation](/javascript#readme) | ||
|
||
## License | ||
|
||
Licensed under the [MIT License](https://github.com/M3DZIK/libcrypto/blob/main/LICENSE) |