rHash® | Data Encryption
Copyright © 2020 | Apache 2.0
Developer / Geliştirici: Swôth#9990
Usage / Kullanım
EN: First we have to define the package.
TR: İlk olarak modülü tanımlamalıyız.
const rHash = require('rhash')
EN: Let's encrypt a text.
TR: Bir metni şifreleyelim.
const rHash = require('rhash')
const text = "Hello world!"
const key = rHash.key("RHS-128")
const encryptedText = rHash.hash(text, key)
console.log(encryptedText)
EN: Use of encryption in login system.
TR: Şifrelemenin giriş sisteminde kullanımı.
const rHash = require('rhash')
const hashedPass = rHash.hash("normalPassword", "superSecretKey")
const formInput = "test123"
if (rHash.hash(formInput, "superSecretKey") === hashedPass) {
console.log("Logged in!")
} else {
console.log("Invalid Password!")
}
EN: Let's decrypt an encrypted code.
TR: Şifreli bir kodun şifresini çözelim.
const rHash = require('rhash')
const text = "Hello world!"
const key = rHash.key("RHS-128")
const encryptedText = rHash.hash(text, key)
console.log(encryptedText)
const decryptedText = rHash.unhash(encryptedText, key)
console.log(decryptedText)
Rules / Kurallar
(EN) 1 - The key used for encryption and the key used for decryption must be the same.
(TR) 1 - Şifrelenirken kullanılan anahtar ile çözerken kullanılan anahtar aynı olmalıdır.
(EN) 2 - The text to be encrypted must not contain UTF-8 characters. (Except Turkish characters)
(TR) 2 - Şifrelenecek metin UTF-8 karakterleri içermemelidir. (Türkçe karakterler hariç)
(EN) 3 - Do not share the key you are using, otherwise they may decrypt it.
(TR) 3 - Kullandığınız anahtarı sakın paylaşmayın aksi takdirde şifresini çözebilirler.
(EN) 4 - The key length of ready encryption methods is more than 750.
(TR) 4 - Hazır şifreleme yöntemlerinin anahtarının uzunluğu 750'den fazladır.
Updates / Güncellemeler
0.0.2 ▸ The encryption system has been strengthened!
0.0.1 ▸ Package created and published on NPM
by Swôth#9990
(Apache 2.0)