New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

secure-flow

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

secure-flow - npm Package Compare versions

Comparing version 1.0.5-beta-2 to 1.0.5-beta-4

2

package.json
{
"name": "secure-flow",
"version": "1.0.5-beta-2",
"version": "1.0.5-beta-4",
"description": "Secure Flow is a lightweight TypeScript utility package for encryption and decryption using the AES-256-CBC algorithm. This package simplifies the process of securely encrypting and decrypting text, making it easy to integrate strong encryption into your Node.js applications.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

// types/secure-flow.d.ts
declare module 'secure-flow' {
export function encrypt(text: string): string;
export function decrypt(text: string): string;
export function encrypt(text: string): string | undefined;
export function decrypt(text: string): string | undefined;

@@ -7,0 +7,0 @@ export interface Config {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc