Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/appsup-dart/x509
Dart library for parsing and working with X.509 certificates
https://github.com/appsup-dart/x509
certificate cryptography x509
Last synced: about 1 month ago
JSON representation
Dart library for parsing and working with X.509 certificates
- Host: GitHub
- URL: https://github.com/appsup-dart/x509
- Owner: appsup-dart
- License: bsd-3-clause
- Created: 2020-02-01T19:22:00.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-28T06:08:16.000Z (8 months ago)
- Last Synced: 2024-06-21T00:13:33.484Z (7 months ago)
- Topics: certificate, cryptography, x509
- Language: Dart
- Homepage:
- Size: 104 KB
- Stars: 10
- Watchers: 3
- Forks: 36
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[:heart: sponsor](https://github.com/sponsors/rbellens)
# x509
Dart library for parsing and working with X.509 certificates.
## Usage
A simple usage example:
```dartimport 'package:x509/x509.dart';
import 'dart:io';void main() {
var cert = parsePem(File('cert.pem').readAsStringSync());
print(cert);
}
```
## Features and bugsPlease file feature requests and bugs at the [issue tracker][tracker].
[tracker]: https://github.com/appsup-dart/x509/issues
## Sponsor
Creating and maintaining this package takes a lot of time. If you like the result, please consider to [:heart: sponsor](https://github.com/sponsors/rbellens).
With your support, I will be able to further improve and support this project.
Also, check out my other dart packages at [pub.dev](https://pub.dev/packages?q=publisher%3Aappsup.be).