UNPKG

strophe.js

Version:

Strophe.js is an XMPP library for JavaScript

40 lines (34 loc) 967 B
/** * @typedef {import("./connection.js").default} Connection */ import SASLMechanism from './sasl.js'; import scram from './scram.js'; class SASLSHA256 extends SASLMechanism { /** * SASL SCRAM SHA 256 authentication. */ constructor(mechname = 'SCRAM-SHA-256', isClientFirst = true, priority = 70) { super(mechname, isClientFirst, priority); } /** * @param {Connection} connection */ test(connection) { return connection.authcid !== null; } /** * @param {Connection} connection * @param {string} [challenge] */ async onChallenge(connection, challenge) { return await scram.scramResponse(connection, challenge, 'SHA-256', 256); } /** * @param {Connection} connection * @param {string} [test_cnonce] */ clientChallenge(connection, test_cnonce) { return scram.clientChallenge(connection, test_cnonce); } } export default SASLSHA256;