@node-saml/node-saml
Version:
SAML 2.0 implementation for Node.js
9 lines (8 loc) • 403 B
TypeScript
/// <reference types="node" />
import { PemLabel } from "./types";
/**
* This function currently expects to get data in PEM format or in base64 format.
*/
export declare const keyInfoToPem: (keyInfo: string | Buffer, pemLabel: PemLabel, optionName?: string) => string;
export declare const generateUniqueId: () => string;
export declare const stripPemHeaderAndFooter: (certificate: string) => string;