Skip to content

Instantly share code, notes, and snippets.

@konstantinzolotarev
Last active January 22, 2024 10:36
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save konstantinzolotarev/deec71876739f8bf1058 to your computer and use it in GitHub Desktop.
Save konstantinzolotarev/deec71876739f8bf1058 to your computer and use it in GitHub Desktop.
Function for node.js that will encrypt password exactly like Symfony2 PHP framework. So all passwords from Symfony2 will work in your node.js application
'use strict';
var crypto = require('crypto');
var _ = require('lodash');
/**
* Will encrypt password in Symfony2 way using a given salt.
*
* @param {string} password
* @param {string} salt
* @returns {string}
*/
function encryptPassword(password, salt){
var salted = `${password}{${salt}}`;
if (!salt){
salted = password;
}
var digest = crypto.createHash(this.algorithm).update(salted).digest('binary');
for (var i = 1; i < this.iterations; i++){
digest = crypto.createHash(this.algorithm).update( Buffer.concat([Buffer.from(digest, 'binary'), Buffer.from(salted, 'utf8')]) ).digest('binary');
}
return (Buffer.from(digest, 'binary')).toString('base64');
};
@dcp-dev
Copy link

dcp-dev commented Jun 26, 2016

Hi,

I want to implement this code in a pure JS script (without node).
I attempted to Browserify this script but I have different result then. Have you an idea about how implement this in a browser ?

Thank you in advance

@konstantinzolotarev
Copy link
Author

@anthonymassard Sorry. Seems that Github didn't create notification about comments here.
Do you still has this issue ?

@stevebaldwin21
Copy link

This doesn't currently work with Node 10.13.0. The concatenation of digest and salted causes issue and doesn't match Symfony. I got around this via the Buffer::concat method. See below;

        var salted = `${password}{${salt}}`;
        if (!salt){
            salted = password;
        }
        var digest = crypto.createHash(this.algorithm).update(salted).digest('binary'); 
        for (var i = 1; i < this.iterations; i++){
            digest = crypto.createHash(this.algorithm).update( Buffer.concat([Buffer.from(digest, 'binary'), Buffer.from(salted, 'utf8')]) ).digest('binary');
        }
        return (Buffer.from(digest, 'binary')).toString('base64');

Thanks for your code also!

@themonti
Copy link

themonti commented Feb 6, 2019

Thanks!! it works perfectly!

@Fluorz
Copy link

Fluorz commented Mar 26, 2020

Thank you @stevebaldwin21

@bluborghi
Copy link

Many thanks @stevebaldwin21 !

@EricMcRay
Copy link

Thanks @stevebaldwin21 saved us hours

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment