michangarrito/apps/mcp-server/node_modules/jose/dist/webapi/lib/verify.js
rckrdmrd 97f407c661 [MIGRATION-V2] feat: Migrar michangarrito a estructura v2
- Prefijo v2: MCH
- TRACEABILITY-MASTER.yml creado
- Listo para integracion como submodulo

Workspace: v2.0.0 | SIMCO: v4.0.0
2026-01-10 11:28:54 -06:00

15 lines
519 B
JavaScript

import { subtleAlgorithm } from './subtle_dsa.js';
import { checkKeyLength } from './check_key_length.js';
import { getSigKey } from './get_sign_verify_key.js';
export async function verify(alg, key, signature, data) {
const cryptoKey = await getSigKey(alg, key, 'verify');
checkKeyLength(alg, cryptoKey);
const algorithm = subtleAlgorithm(alg, cryptoKey.algorithm);
try {
return await crypto.subtle.verify(algorithm, cryptoKey, signature, data);
}
catch {
return false;
}
}