symmetricmorph
Version:
High-performance symmetric stream cipher with dynamic masking, cascading feedback, built-in MAC, and chunked encryption support. Lightweight and dependency-free.
51 lines (50 loc) • 1.31 kB
JSON
{
"name": "symmetricmorph",
"version": "1.0.3",
"description": "High-performance symmetric stream cipher with dynamic masking, cascading feedback, built-in MAC, and chunked encryption support. Lightweight and dependency-free.",
"main": "./dist/node/SymmetricMorph.js",
"module": "./dist/browser/symmetricmorph.es.js",
"types": "./dist/node/SymmetricMorph.d.ts",
"exports": {
"import": "./dist/browser/symmetricmorph.es.js",
"require": "./dist/node/SymmetricMorph.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"TESTING.md"
],
"scripts": {
"build:node": "tsc",
"build:browser": "vite build",
"build": "npm run build:node && npm run build:browser",
"test": "vitest run",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/sur-ser/symmetricmorph.git"
},
"keywords": [
"encryption",
"crypto",
"stream-cipher",
"security",
"typescript",
"cipher",
"symmetric",
"stream-encryption",
"npm",
"browser",
"nodejs",
"lightweight",
"web-worker"
],
"author": "Suren Krmoian",
"license": "MIT",
"bugs": {
"url": "https://github.com/sur-ser/symmetricmorph/issues"
},
"homepage": "https://github.com/sur-ser/symmetricmorph#readme"
}