UNPKG

xypriss-security

Version:

Advanced High-Performance Security Framework. Military-grade encryption, post-quantum resilience, and fortified data structures.

26 lines 1.02 kB
/*************************************************************************** * XyPriss Security - Cryptographic Algorithm Utilities * * Provides professional metadata and classification for supported algorithms. * * @author NEHONIX (Nehonix-Team - https://github.com/Nehonix-Team) * @license Nehonix Open Source License (NOSL) ****************************************************************************/ import { AlgorithmInfo } from "../types"; /** * Utility class for managing cryptographic algorithm information. */ export declare class CryptoAlgorithmUtils { /** * Retrieves detailed metrics and metadata for a specific algorithm. * * @param name - The identifier of the algorithm. * @returns Detailed algorithm specifications. */ static getAlgorithmInfo(name: string): AlgorithmInfo; /** * Standardizes algorithm names to framework-recognized formats. */ static standardizeName(name: string): string; } //# sourceMappingURL=CryptoAlgorithmUtils.d.ts.map