const Errors = require('./errors');
const { MysteryBox } = require('@squeep/mystery-box');
const { TOTP } = require('@squeep/totp');
+const { timingSafeEqual } = require('node:crypto');
const { name: packageName } = require('../package');
const _fileScope = common.fileScope(__filename);
* @returns {Promise<boolean>} is valid
*/
static _isValidPlainIdentifier(authData, credential) {
- return authData.credential.substring('$plain$'.length) === credential;
+ const authBuf = Buffer.from(authData.credential.substring('$plain$'.length));
+ const credBuf = Buffer.from(credential);
+ return (authBuf.length === credBuf.length) && timingSafeEqual(authBuf, credBuf);
}