michangarrito/apps/mcp-server/node_modules/hono/dist/utils/jwt/jwa.js
rckrdmrd 48dea7a5d0 feat: Initial commit - michangarrito
Marketplace móvil para negocios locales mexicanos.

Estructura inicial:
- apps/backend (NestJS API)
- apps/frontend (React Web)
- apps/mobile (Expo/React Native)
- apps/mcp-server (Claude MCP Server)
- apps/whatsapp-service (WhatsApp Business API)
- database/ (PostgreSQL DDL)
- docs/ (Documentación)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-07 04:41:02 -06:00

21 lines
660 B
JavaScript

// src/utils/jwt/jwa.ts
var AlgorithmTypes = /* @__PURE__ */ ((AlgorithmTypes2) => {
AlgorithmTypes2["HS256"] = "HS256";
AlgorithmTypes2["HS384"] = "HS384";
AlgorithmTypes2["HS512"] = "HS512";
AlgorithmTypes2["RS256"] = "RS256";
AlgorithmTypes2["RS384"] = "RS384";
AlgorithmTypes2["RS512"] = "RS512";
AlgorithmTypes2["PS256"] = "PS256";
AlgorithmTypes2["PS384"] = "PS384";
AlgorithmTypes2["PS512"] = "PS512";
AlgorithmTypes2["ES256"] = "ES256";
AlgorithmTypes2["ES384"] = "ES384";
AlgorithmTypes2["ES512"] = "ES512";
AlgorithmTypes2["EdDSA"] = "EdDSA";
return AlgorithmTypes2;
})(AlgorithmTypes || {});
export {
AlgorithmTypes
};