Shared-Hosting mit gemanagtem E-Mail Kram. E-mail ist der wichtige Teil, den Rest kann ich notfalls auch selbst auf nem V-Server hosten.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ATTEMPT TO PARSE A node-scrypt STRING CORRECTLY FOR USE WITH scrypt-async */ | |
var scrypt = require('scrypt-async'); | |
var scryptOld = require('scrypt'); | |
var crypto = require('crypto'); | |
// Format as seen in node-scrypt, written by Barry Steyn. Scrypt by Colin Percival. | |
// https://github.com/barrysteyn/node-scrypt/blob/master/scrypt/scrypt-1.2.0/keyderivation.c#L60-L77 and | |
// https://security.stackexchange.com/a/91050/50616 | |
// scrypt paper: https://www.tarsnap.com/scrypt/scrypt.pdf (not helpful for this :-( ) |
OlderNewer