We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8b8611 commit 27c0ed4Copy full SHA for 27c0ed4
apps/meteor/app/2fa/server/code/index.ts
@@ -60,7 +60,7 @@ function getFingerprintFromConnection(connection: IMethodConnection): string {
60
clientAddress: connection.clientAddress,
61
});
62
63
- return crypto.createHash('md5').update(data).digest('hex');
+ return crypto.createHash('sha256').update(data).digest('hex');
64
}
65
66
function getRememberDate(from: Date = new Date()): Date | undefined {
0 commit comments