Skip to main content
Glama
crossPlatformSha256.tsโ€ข864 B
import { Sha256 as WebCryptoSha256 } from "./webCryptoSha256"; import { Sha256 as JsSha256 } from "@aws-crypto/sha256-js"; import { Checksum, SourceData } from "@aws-sdk/types"; import { supportsWebCrypto } from "@aws-crypto/supports-web-crypto"; import { locateWindow } from "@aws-sdk/util-locate-window"; import { convertToBuffer } from "@aws-crypto/util"; export class Sha256 implements Checksum { private hash: Checksum; constructor(secret?: SourceData) { if (supportsWebCrypto(locateWindow())) { this.hash = new WebCryptoSha256(secret); } else { this.hash = new JsSha256(secret); } } update(data: SourceData, encoding?: "utf8" | "ascii" | "latin1"): void { this.hash.update(convertToBuffer(data)); } digest(): Promise<Uint8Array> { return this.hash.digest(); } reset(): void { this.hash.reset(); } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/consigcody94/office-whisperer'

If you have feedback or need assistance with the MCP directory API, please join our Discord server