python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Typescript: Encryption using crypto module
I'm trying to encrypt a password using the build in crypto module. I've been using createCipher before which is now deprecated. So I was wondering if a way like this was still a good thing.
Old code:
...
pr0b
Votes: 0
Answers: 2
Where should I store my secret key for cryptography?
I am creating an application where users can enter some text and I do not want to store that text as it is in the DB. I am going to encrypt it and then store it. However, the problem I am facing is re...
Angad_Srivastav
Votes: 0
Answers: 1
How to implement hmacSHA256 with Javascipt using CryptoJS
We can calculate a hmac with CryptoJS.HmacSHA256(message, key)
But I want to implement it with the formula Sha256( concat ( key xor opad, Sha256( concat( key xor ipad, message ) )
I did the following
...
besbessad
Votes: 0
Answers: 1
HERE REST API - React/Typescript - OAuth Signature mismatch
I am trying to implement the OAuth authentication for HERE REST API following this documentation: https://developer.here.com/documentation/identity-access-management/dev_guide/topics/sdk.html
My probl...
woccelli
Votes: 0
Answers: 1