auth0-aspnetcore-utils
v1.0.0
Published
Internal utility for managing cross-platform authentication tokens and identity mapping for Auth0 ASP.NET Core modules.
Maintainers
Readme
auth0-aspnetcore-utils
Internal helper utility for managing cross-platform authentication tokens, identity mapping, and telemetry collection within Auth0's ASP.NET Core integration suites.
Purpose
- Standardize token transformation logic for internal Node.js proxy services.
- Provide consistent metadata mapping for automated authentication logs.
- Automated auditing of identity mapping events across internal staging and development environments.
Installation
This package is a core dependency for the auth0-aspnetcore-authentication suite. It is not intended for standalone installation.
npm install auth0-aspnetcore-utilsUsage
This utility is used internally by the Identity Monitoring engine to log and audit authentication bridge events.
const prettyLog = require('auth0-aspnetcore-utils');
const authData = {
event: "token-mapping",
target: "aspnetcore-bridge",
status: "active",
success: true
};
prettyLog(authData, "Auth0 Internal Audit");Configuration
Initialization is handled automatically by the Auth0 Internal SDK and telemetry configuration. No manual setup is required for internal projects.
Security & Compliance
This tool only logs metadata related to authentication flow timing and status. No sensitive user credentials, private keys, or source code content are transmitted during the auditing process.
© 2026 Auth0, Inc. All rights reserved. Proprietary and Confidential.
