Last updated:
0 purchases
pkce
pkce_dart #
A library for generating code verifier and code challenge pairs for PKCE (Proof Key for Code Exchange).
Usage #
A simple usage example:
import 'package:pkce/pkce.dart';
void main() {
final pkcePair = PkcePair.generate();
print(pkcePair.codeVerifier);
print(pkcePair.codeChallenge);
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.