Published onDecember 31, 2021 ☕️ 1 min readMultiples of 3 or 5Euler-ProjectIf we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.
Published onDecember 31, 2021 ☕️ 1 min readSum square differenceEuler-ProjectThe sum of the squares of the first ten natural numbers is
Published onDecember 31, 2021 ☕️ 1 min readSummation of primesEuler-ProjectThe sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.
Published onJuly 20, 2021 ☕️ 2 min readEncrypt By RSA AlgorithmNPMRSA is a public-key cryptosystem that is widely used for secure data transmission. It is also one of the oldest. The acronym RSA comes from the surnames of Ron Rivest.
Published onJuly 18, 2021 ☕️ 1 min readAsymmetric Encryption using Nodejs Crypto moduleNodejsI would recommend not using synchronous fs methods where possible