Dart library for parsing and working with X.509 certificates.
A simple usage example:
import 'package:x509/x509.dart';
import 'dart:io';
main() {
var cert = parsePem(new File('cert.pem').readAsStringSync());
print(cert);
}
Please file feature requests and bugs at the issue tracker.