cartouche 0.1.0
cartouche: ^0.1.0 copied to clipboard
Personal access tokens for Maat applications.
import 'package:cartouche/cartouche.dart';
void main() {
final secret = Cartouche.secret();
final hash = Cartouche.hash(secret);
print('Token matches: ${Cartouche.matches(secret, hash)}');
}