t-taguchi / x509

Dart library for parsing and working with X.509 certificates

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

x509

Dart library for parsing and working with X.509 certificates.

Usage

A simple usage example:

import 'package:x509/x509.dart';
import 'dart:io';

main() {
  var cert = parsePem(new File('cert.pem').readAsStringSync());
  
  print(cert);
}

Features and bugs

Please file feature requests and bugs at the issue tracker.

About

Dart library for parsing and working with X.509 certificates

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Dart 100.0%