Skip to content

Commit d76b861

Browse files
committed
chore: update readme
1 parent f67b097 commit d76b861

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

Diff for: README.md

-9
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ Library for use openPGP with support for android, ios, macos, windows, linux and
4141

4242
## Generate methods
4343
```dart
44-
import 'package:openpgp/openpgp.dart';
4544
4645
void main() async {
4746
var keyOptions = KeyOptions()..rsaBits = 2048;
@@ -57,7 +56,6 @@ void main() async {
5756
### Encrypt methods
5857

5958
```dart
60-
import 'package:fast_rsa/rsa.dart';
6159
6260
void main() async {
6361
var bytesSample = Uint8List.fromList('data'.codeUnits);
@@ -74,7 +72,6 @@ void main() async {
7472
### Decrypt methods
7573

7674
```dart
77-
import 'package:fast_rsa/rsa.dart';
7875
7976
void main() async {
8077
var bytesSample = Uint8List.fromList('data'.codeUnits);
@@ -90,7 +87,6 @@ void main() async {
9087
### Sign methods
9188

9289
```dart
93-
import 'package:fast_rsa/rsa.dart';
9490
9591
void main() async {
9692
var bytesSample = Uint8List.fromList('data'.codeUnits);
@@ -109,7 +105,6 @@ void main() async {
109105
### Verify methods
110106

111107
```dart
112-
import 'package:fast_rsa/rsa.dart';
113108
114109
void main() async {
115110
var bytesSample = Uint8List.fromList('data'.codeUnits);
@@ -128,7 +123,6 @@ void main() async {
128123
### Encode methods
129124

130125
```dart
131-
import 'package:fast_rsa/rsa.dart';
132126
133127
void main() async {
134128
var bytesSample = Uint8List.fromList('data'.codeUnits);
@@ -140,7 +134,6 @@ void main() async {
140134
### Decode methods
141135

142136
```dart
143-
import 'package:fast_rsa/rsa.dart';
144137
145138
void main() async {
146139
var result = await OpenPGP.armorDecode("message here");
@@ -152,7 +145,6 @@ void main() async {
152145
### Metadata methods
153146

154147
```dart
155-
import 'package:fast_rsa/rsa.dart';
156148
157149
void main() async {
158150
var result = await OpenPGP.getPrivateKeyMetadata("[privateKey here]");
@@ -165,7 +157,6 @@ void main() async {
165157
### Convert methods
166158

167159
```dart
168-
import 'package:fast_rsa/rsa.dart';
169160
170161
void main() async {
171162
var result = await OpenPGP.convertPrivateKeyToPublicKey("[privateKey here]");

0 commit comments

Comments
 (0)