Skip to content

Commit

Permalink
feat: publish new version under x509_plus
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmednfwela committed Sep 14, 2023
1 parent be25a78 commit b97cc1c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion example/main.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'dart:io';

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

void main() {
var certRequest = parsePem(File('test/files/csr.pem').readAsStringSync())
Expand Down
3 changes: 3 additions & 0 deletions lib/x509.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// Copyright (c) 2020, Rik Bellens. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.

///
library x509_plus;

export 'src/x509_base.dart';
5 changes: 3 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: x509
name: x509_plus
description: Dart library for parsing and working with X.509 certificates.
version: 0.2.4
homepage: https://github.com/appsup-dart/x509
homepage: https://github.com/Bdaya-Dev/x509
funding:
- https://github.com/sponsors/rbellens

Expand All @@ -15,6 +15,7 @@ dependencies:

dev_dependencies:
lints: ^2.0.0
melos: ^3.1.1
test: ^1.0.0

false_secrets:
Expand Down
2 changes: 1 addition & 1 deletion test/objectidentifier_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:test/test.dart';
import 'package:x509/x509.dart';
import 'package:x509_plus/x509.dart';

void main() {
group('name', () {
Expand Down
2 changes: 1 addition & 1 deletion test/x509_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'dart:typed_data';

import 'package:asn1lib/asn1lib.dart';
import 'package:test/test.dart';
import 'package:x509/x509.dart';
import 'package:x509_plus/x509.dart';

void main() {
group('rsa', () {
Expand Down

0 comments on commit b97cc1c

Please sign in to comment.