44499541acf02e46507ad951954c7b4a78a95a8b
				
			
			
		
	Password Helper
ensuring secure password storage on the server side
const password_helper = require('@scode/password-helper');
const hash = await password_helper.hash('foo');
await password_helper.verify(hash, 'foo'); // returns true;
await password_helper.verify(hash, 'bar'); // returns false;
Description
				
					Languages
				
				
								
								
									JavaScript
								
								100%