UNPKG

@cryptr/cryptr-spa-js

Version:

Cryptr SDK for Single Page Applications using passwordless authentication and/or SSO

8 lines (7 loc) 251 B
import { ProofKeyChallengeExchange } from './interfaces'; declare const Pkce: { gen: (state?: string) => ProofKeyChallengeExchange; genCodeVerifier: () => string; genCodeChallenge: (codeVerifier: string) => string; }; export default Pkce;