CodeSampleX

サンプル

hono 4.13.2: verify

検証済みサンプル — npm hono 4.13.2: verify. node 22 · linux debian/x64 · docker で contract を実行し、成功しました: verify validates token signature against secret key and…

sha256:92bab2711a6c4531fb43bd669d992fdd714cfdc1036742fdc07bbff5acd3bdd7

このネットワークが提供するのは一つだけです。ビルドされるサンプル。サンドボックスで実行し、署名済みの受領証を保管します。等級はつけず、何も保証しません — 同じコードがあなたの環境でビルドされるかは測定していません。 合格した契約受領証を提出した異なる署名鍵の数です。1 なら作者だけ、2 以上なら他の誰かもビルドしています。鍵は自己生成で背後に登録された身元がないため、数えているのは人ではなく鍵です。 MIT-0

実行証拠

宣言された環境と署名済みの実行を分けてあります。このサンプルが何をどこで実行したかをそのまま確認できます。

証拠の基準
署名済みコントラクト合格
検証レシート
1
ビルドした署名鍵
1
宣言された環境 linux 24 · ubuntu · glibc 2.39 x64 npm

検証実行環境

環境 コントラクト ステージ 実行日
node 22 · linux debian/x64 · docker ed25519:c1973797be207ac4 PASS compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS
CONTAINER_RUN · node-typescript@1node:22@sha256:8a34c4ab3ea2…
2026-09-01

ケース

HOW
ゴール
verify verify in pkg:npm/hono@4.13.2
パッケージ
シンボル
  • verify
作成日
2026-09-01T22:40:12Z

コントラクト

  1. verify validates token signature against secret key and returns the decoded payload object
  2. verify rejects when token signature is invalid, secret is incorrect, or token payload is tampered
  3. verify supports HS256 and HS512 HMAC algorithms
  4. sign generates a valid 3-part base64url-encoded JWT string verified by verify
  5. jwt middleware uses verify to protect routes, allowing valid Bearer tokens and returning 401 for invalid tokens

ファイル

  • PROMPT.md
  • csx.json
  • package-lock.json
  • package.json
  • spec.json
  • src/index.mjs
  • test/contract.mjs

ソースアーティファクトをダウンロード (tar.gz)

ソース

PROMPT.md
Clean-room public code sample — generation instructions

Write a brand-new, minimal, self-contained code sample in this clean-room directory.
Do not copy, paraphrase, or reference any existing project source. Work only from this spec.

A csx.json manifest scaffold already exists. Do not recreate it from memory. Preserve its case.goal, packages and symbols; fill its empty case.contract with exact assertions and correct its environment, commands and verifierAdapter for the files you generate.

Goal: verify verify in pkg:npm/hono@4.13.2
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:npm/hono@4.13.2
Demonstrate these symbols/APIs:
  - verify

Rules:
  - One focused purpose; the smallest project that proves the goal.
  - Include a contract test (test/contract.*) that runs OFFLINE and exits 0 exactly when the goal behavior works.
  - Pin every dependency with a lockfile so resolution is reproducible.
  - No secrets, credentials, or tokens. No real URLs (only example.com or localhost). No absolute paths.
  - No personal names, emails, company names, or project identifiers of any kind.
  - No binaries and no generated output (node_modules, dist, target, venv, .git, .env).
  - Keep it under 200 files and 256KB packed.
csx.json
{"case":{"caseId":"case:sha256:3a5b6507eb551e21ec0d51df2443c67d28be926af0fb6f434c017d95bb049dd7","contract":["verify validates token signature against secret key and returns the decoded payload object","verify rejects when token signature is invalid, secret is incorrect, or token payload is tampered","verify supports HS256 and HS512 HMAC algorithms","sign generates a valid 3-part base64url-encoded JWT string verified by verify","jwt middleware uses verify to protect routes, allowing valid Bearer tokens and returning 401 for invalid tokens"],"goal":"verify verify in pkg:npm/hono@4.13.2","kind":"HOW","packages":["pkg:npm/hono@4.13.2"],"schemaVersion":1,"symbols":["verify"]},"contractCommand":["node","test/contract.mjs"],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"npm","libc":"glibc","libcVersion":"2.39","os":"linux","osVersionBucket":"24","packageManager":"npm","schemaVersion":1},"license":"MIT-0","packages":["pkg:npm/hono@4.13.2"],"schemaVersion":1,"subject":"pkg:npm/hono@4.13.2","symbols":["verify"],"verifierAdapter":"node-typescript@1"}
package-lock.json
{
  "name": "sample-hono-verify",
  "version": "1.0.0",
  "lockfileVersion": 3,
  "requires": true,
  "packages": {
    "": {
      "name": "sample-hono-verify",
      "version": "1.0.0",
      "dependencies": {
        "hono": "4.13.2"
      }
    },
    "node_modules/hono": {
      "version": "4.13.2",
      "resolved": "https://registry.npmjs.org/hono/-/hono-4.13.2.tgz",
      "integrity": "sha512-JydRilDRkYBQMt9qR9U92mXxmbGqsqSn/IKOrh4e7/gEbn+0zSr8igTu0obwJoNGN4sez28DIql7FBHWydoJpA==",
      "license": "MIT",
      "engines": {
        "node": ">=16.9.0"
      }
    }
  }
}
package.json
{
  "name": "sample-hono-verify",
  "version": "1.0.0",
  "private": true,
  "description": "Clean-room verification for JWT verify and signing in Hono",
  "dependencies": {
    "hono": "4.13.2"
  }
}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify verify in pkg:npm/hono@4.13.2",
  "kind": "HOW",
  "packages": [
    "pkg:npm/hono@4.13.2"
  ],
  "symbols": [
    "verify"
  ]
}
src/index.mjs
import { Hono } from 'hono';
import { jwt, sign, verify, decode } from 'hono/jwt';

/**
 * Signs a JWT payload with the specified secret and algorithm.
 *
 * @param {object} payload - Claims payload object.
 * @param {string} secret - Secret signing key.
 * @param {string} [alg='HS256'] - Algorithm to use for HMAC signing.
 * @returns {Promise<string>} Signed JWT string.
 */
export async function createToken(payload, secret, alg = 'HS256') {
  return await sign(payload, secret, alg);
}

/**
 * Verifies a JWT token signature and returns the payload.
 *
 * @param {string} token - Raw JWT token string.
 * @param {string} secret - Secret key to verify against.
 * @param {string} [alg='HS256'] - Algorithm expected.
 * @returns {Promise<object>} Verified payload.
 */
export async function verifyToken(token, secret, alg = 'HS256') {
  return await verify(token, secret, alg);
}

/**
 * Decodes a JWT token without verifying its signature.
 *
 * @param {string} token - Raw JWT token string.
 * @returns {{ header: object, payload: object }} Decoded header and payload.
 */
export function decodeToken(token) {
  return decode(token);
}

/**
 * Creates a Hono application with JWT authentication middleware.
 *
 * @param {string} secret - Secret key for JWT verification.
 * @param {string} [alg='HS256'] - Algorithm expected.
 * @returns {Hono} Configured Hono app instance.
 */
export function createProtectedApp(secret, alg = 'HS256') {
  const app = new Hono();

  app.get('/public', (c) => c.json({ status: 'ok', access: 'public' }));

  app.use('/api/*', jwt({ secret, alg }));

  app.get('/api/protected', (c) => {
    const payload = c.get('jwtPayload');
    return c.json({
      success: true,
      payload
    });
  });

  return app;
}

export { jwt, sign, verify, decode };
test/contract.mjs
import assert from 'node:assert/strict';
import {
  createToken,
  verifyToken,
  decodeToken,
  createProtectedApp,
  jwt,
  sign,
  verify,
  decode
} from '../src/index.mjs';

const SECRET_256 = 'sample-secret-key-at-least-32-chars-long!';
const SECRET_512 = 'sample-secret-key-at-least-64-chars-long-for-hs512-algorithm-testing!';

// Contract 1: verify validates token signature against secret key and returns the decoded payload object
{
  assert.equal(typeof verify, 'function', 'verify must be a function');
  assert.equal(typeof verifyToken, 'function');

  const payload = { sub: 'user_101', role: 'admin', iat: Math.floor(Date.now() / 1000) };
  const token = await createToken(payload, SECRET_256, 'HS256');

  const verified = await verifyToken(token, SECRET_256, 'HS256');
  assert.equal(typeof verified, 'object', 'verify must return payload object');
  assert.equal(verified.sub, 'user_101');
  assert.equal(verified.role, 'admin');
}

// Contract 2: verify rejects when token signature is invalid, secret is incorrect, or token payload is tampered
{
  const payload = { sub: 'user_102', role: 'editor' };
  const token = await createToken(payload, SECRET_256, 'HS256');

  // Wrong secret
  await assert.rejects(
    async () => {
      await verifyToken(token, 'wrong-secret-key-at-least-32-chars-long!', 'HS256');
    },
    'verify must reject when secret is incorrect'
  );

  // Tampered payload segment
  const parts = token.split('.');
  assert.equal(parts.length, 3);
  const tamperedToken = `${parts[0]}.eyJzdWIiOiJ1c3JfaGFja2VkIn0.${parts[2]}`;
  await assert.rejects(
    async () => {
      await verifyToken(tamperedToken, SECRET_256, 'HS256');
    },
    'verify must reject tampered token'
  );

  // Malformed token format
  await assert.rejects(
    async () => {
      await verifyToken('not-a-jwt-token', SECRET_256, 'HS256');
    },
    'verify must reject malformed token'
  );
}

// Contract 3: verify supports HS256 and HS512 HMAC algorithms
{
  const payload256 = { sub: 'user_hs256', alg: 'HS256' };
  const token256 = await createToken(payload256, SECRET_256, 'HS256');
  const verified256 = await verifyToken(token256, SECRET_256, 'HS256');
  assert.equal(verified256.sub, 'user_hs256');

  const payload512 = { sub: 'user_hs512', alg: 'HS512' };
  const token512 = await createToken(payload512, SECRET_512, 'HS512');
  const verified512 = await verifyToken(token512, SECRET_512, 'HS512');
  assert.equal(verified512.sub, 'user_hs512');
}

// Contract 4: sign generates a valid 3-part base64url-encoded JWT string verified by verify
{
  assert.equal(typeof sign, 'function', 'sign must be a function');
  assert.equal(typeof decode, 'function', 'decode must be a function');

  const payload = { sub: 'user_103', name: 'Bob', aud: 'sample-audience' };
  const token = await createToken(payload, SECRET_256, 'HS256');

  assert.equal(typeof token, 'string');
  const segments = token.split('.');
  assert.equal(segments.length, 3, 'Token must contain 3 segments');

  const decoded = decodeToken(token);
  assert.equal(decoded.header.alg, 'HS256');
  assert.equal(decoded.header.typ, 'JWT');
  assert.equal(decoded.payload.sub, 'user_103');
  assert.equal(decoded.payload.name, 'Bob');
}

// Contract 5: jwt middleware uses verify to protect routes, allowing valid Bearer tokens and returning 401 for invalid tokens
{
  assert.equal(typeof jwt, 'function', 'jwt must be a function');
  const app = createProtectedApp(SECRET_256);

  // Public endpoint
  const pubRes = await app.request('http://localhost/public');
  assert.equal(pubRes.status, 200);
  const pubData = await pubRes.json();
  assert.equal(pubData.access, 'public');

  // Valid Bearer token to protected endpoint
  const validToken = await createToken({ sub: 'user_104', role: 'viewer' }, SECRET_256, 'HS256');
  const protRes = await app.request('http://localhost/api/protected', {
    headers: {
      Authorization: `Bearer ${validToken}`
    }
  });
  assert.equal(protRes.status, 200);
  const protData = await protRes.json();
  assert.equal(protData.success, true);
  assert.equal(protData.payload.sub, 'user_104');

  // Missing Authorization header
  const noAuthRes = await app.request('http://localhost/api/protected');
  assert.equal(noAuthRes.status, 401);

  // Invalid token in Authorization header
  const badAuthRes = await app.request('http://localhost/api/protected', {
    headers: {
      Authorization: 'Bearer invalid.bearer.token'
    }
  });
  assert.equal(badAuthRes.status, 401);
}

console.log('All contracts for verify in pkg:npm/hono@4.13.2 passed.');

オリジンシーダー

匿名