npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

secure-api-client

v0.1.0

Published

Angular library for client-side API endpoint and payload encryption using AES-CBC.

Downloads

19

Readme

secure-api-client

An Angular library for client-side API endpoint obfuscation and payload encryption using AES-CBC. This package helps enhance your application's security by encrypting sensitive API paths and request bodies, complementing your existing HTTPS/TLS security.


✨ Features

  • Endpoint Obfuscation: Encrypts API path segments to hide actual endpoints from casual observation in network requests.
  • Payload Confidentiality: Encrypts and decrypts entire request bodies (e.g., JSON data) before transmission.
  • Symmetric Encryption: Uses AES-256 in CBC (Cipher Block Chaining) mode with PKCS7 padding.
  • Configurable Key: The encryption key is derived from a passphrase provided by the consuming application via Angular's Dependency Injection.
  • Dynamic IV Generation: Generates a new, random 16-byte (128-bit) Initialization Vector (IV) for each encryption operation, crucial for security.
  • Comprehensive Crypto Utilities: Provides methods for both encryption and decryption of API paths and payloads, along with IV handling helpers.
  • URL Encoding/Decoding: Handles necessary URL encoding for encrypted path segments and IVs when used in URLs.

🚀 Installation

Install the library and its peer dependency (crypto-js) using npm:

npm install secure-api-client crypto-js

💡 Usage

1. Provide the Encryption Key Passphrase

Your SecureApiClientService requires a secret passphrase from which the encryption key is derived. This passphrase must be provided via Angular's Dependency Injection system using an InjectionToken.

First, create a file for your injection token in your application (e.g., src/app/consts/keyphrase.consts.ts):

// src/app/consts/keyphrase.consts.ts
import { InjectionToken } from '@angular/core';

export const KEY_PASSPHRASE = new InjectionToken<string>('keyPassphrase');

Then, in your AppModule (or any other module where you want to provide it), set up the provider. It's highly recommended to load this passphrase from your Angular environment files (e.g., environment.ts or environment.prod.ts) to manage it securely per environment.

// src/app/app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { HttpClientModule } from '@angular/common/http';

import { AppComponent } from './app.component';
import { KEY_PASSPHRASE } from './consts/keyphrase.consts';
import { environment } from '../environments/environment';

@NgModule({
  declarations: [AppComponent],
  imports: [BrowserModule, HttpClientModule],
  providers: [
    {
      provide: KEY_PASSPHRASE,
      useValue: environment.encryptionKeyPassphrase
    }
  ],
  bootstrap: [AppComponent]
})
export class AppModule {}

In your environment files:

// src/environments/environment.ts
export const environment = {
  production: false,
  encryptionKeyPassphrase: 'your_development_secret_key_here'
};
// src/environments/environment.prod.ts
export const environment = {
  production: true,
  encryptionKeyPassphrase: 'YOUR_SUPER_SECRET_PRODUCTION_KEY'
};

2. Inject and Use the Service

import { Component } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { SecureApiClientService } from 'secure-api-client';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  private baseUrl = 'https://localhost:7241/api/x';

  constructor(
    private http: HttpClient,
    private secureApiClientService: SecureApiClientService
  ) {}

  sendEncryptedRequest(): void {
    const iv = this.secureApiClientService.generateIv();
    const ivUrlEncodedBase64 = this.secureApiClientService.getIvUrlEncoded(iv);

    const actualApiPath = 'application/GetBoardValues';
    const payloadData = { boardId: '123', userId: 'abc', status: 'active' };

    const encryptedPath = this.secureApiClientService.encryptApiPath(actualApiPath, iv);
    const encryptedPayload = this.secureApiClientService.encryptPayload(JSON.stringify(payloadData), iv);

    const requestUrl = `${this.baseUrl}/${encryptedPath}?iv=${ivUrlEncodedBase64}`;

    this.http.post(requestUrl, encryptedPayload, {
      headers: {
        'Content-Type': 'text/plain'
      }
    }).subscribe(
      response => {
        console.log('Encrypted request successful:', response);
      },
      error => {
        console.error('Encrypted request failed:', error);
      }
    );
  }

  testDecryption(): void {
    const sampleEncryptedPath = 'PRqtpCvHfQouH4yMhPLpmg%3D%3D';
    const sampleIvUrlEncoded = 'jW8PP4WAyPf63xnBluippA%3D%3D';
    const sampleEncryptedPayload = 'tyMNcufA1GeK91c/1K6UbFJ3a5eiHiDQqMn5O5JAGPRSnrHREfNsH+xy5aZzqwZsQVQB66GzHeWhhcm/STnB1A==';
    const sampleIvBase64 = decodeURIComponent(sampleIvUrlEncoded);

    try {
      const decryptedPath = this.secureApiClientService.decryptApiPath(sampleEncryptedPath, sampleIvUrlEncoded);
      console.log('Decrypted Path:', decryptedPath);

      const decryptedPayload = this.secureApiClientService.decryptPayload(sampleEncryptedPayload, sampleIvBase64);
      console.log('Decrypted Payload:', decryptedPayload);
    } catch (e) {
      console.error('Decryption Test Failed:', e);
    }
  }

  getDerivedKeyForDebug(): void {
    const derivedKeyHex = this.secureApiClientService.getDerivedKeyHex();
    console.log('Derived Key (Hex, for debug):', derivedKeyHex);
  }
}

🔑 API Reference

SecureApiClientService

Constructor:

constructor(@Inject(KEY_PASSPHRASE) keyPassphrase: string)

Initializes the service. The keyPassphrase is used to derive the AES encryption key.


Methods:

  • generateIv(): CryptoJS.lib.WordArray
    Generates a new 16-byte IV.

  • encryptPayload(plainText: string, iv: CryptoJS.lib.WordArray): string
    Encrypts a plain text string using AES-CBC.
    Returns: Base64 encoded ciphertext.

  • decryptPayload(base64CipherText: string, ivBase64: string): string
    Decrypts a Base64 encoded ciphertext string using the provided IV.

  • encryptApiPath(path: string, iv: CryptoJS.lib.WordArray): string
    Encrypts and URL-encodes a path segment.

  • decryptApiPath(urlEncodedBase64Path: string, ivUrlEncodedBase64: string): string
    Decrypts a URL-encoded path using the encrypted IV.

  • getIvBase64(iv: CryptoJS.lib.WordArray): string
    Converts IV to raw Base64 string.

  • getIvUrlEncoded(iv: CryptoJS.lib.WordArray): string
    Converts IV to URL-encoded Base64 string.

  • getDerivedKeyHex(): string
    Returns the derived AES key in hex (for debugging only).


⚠️ Security Considerations

  • Key Management is Paramount: Do not hardcode or expose the passphrase in the client.
  • Use HTTPS/TLS: This library supplements HTTPS, not replaces it.
  • Unique IV Per Request: Never reuse IVs with the same key.
  • Server Support Required: Ensure your backend understands and decrypts the encrypted request properly.

🤝 Contributing

Contributions are welcome! Please open issues or pull requests with bug reports or enhancements.


📄 License

This project is licensed under the MIT License. See the LICENSE file for details.