Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @petrleocompel
35 changes: 35 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Publish plugin

on:
release:
types: [published]

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Publish "cryptography"
uses: k-paxian/dart-package-publisher@v1.6
with:
relativePath: cryptography
skipTests: true
accessToken: ${{ secrets.OAUTH_ACCESS_TOKEN }}
refreshToken: ${{ secrets.OAUTH_REFRESH_TOKEN }}
- name: Publish "cryptography_flutter"
uses: k-paxian/dart-package-publisher@v1.6
with:
flutter: true
skipTests: true
relativePath: cryptography_flutter
accessToken: ${{ secrets.OAUTH_ACCESS_TOKEN }}
refreshToken: ${{ secrets.OAUTH_REFRESH_TOKEN }}
- name: Publish "jwk"
uses: k-paxian/dart-package-publisher@v1.6
with:
flutter: true
skipTests: true
relativePath: jwk
accessToken: ${{ secrets.OAUTH_ACCESS_TOKEN }}
refreshToken: ${{ secrets.OAUTH_REFRESH_TOKEN }}
40 changes: 21 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,33 @@
[![Pub Package](https://img.shields.io/pub/v/cryptography.svg)](https://pub.dev/packages/cryptography)
[![Github Actions CI](https://github.com/dint-dev/cryptography/workflows/Dart%20CI/badge.svg)](https://github.com/dint-dev/cryptography/actions?query=workflow%3A%22Dart+CI%22)
[![Pub Package](https://img.shields.io/pub/v/cryptography_plus.svg)](https://pub.dev/packages/cryptography_plus)
[![Github Actions CI](https://github.com/emz-hanauer/dart-cryptography/workflows/Dart%20CI/badge.svg)](https://github.com/emz-hanauer/dart-cryptography/actions?query=workflow%3A%22Dart+CI%22)

# Overview

Cryptographic packages for [Dart](https://dart.dev) / [Flutter](https://flutter.dev) developers.
Open-sourced under the [Apache License 2.0](LICENSE).

Maintained by [gohilla.com](https://gohilla.com). Licensed under the [Apache License 2.0](LICENSE).
> Package was maintained by [gohilla.com](https://gohilla.com). Repository was moved to [emz-hanauer/dart-cryptography](https://github.com/emz-hanauer/dart-cryptography) due to lack of maintenance.

## Packages
* [cryptography](cryptography)
* Cryptography API for Dart / Flutter.
* Contains cryptographic algorithm implementations written in pure Dart.
* Contains cryptographic algorithm implementations that use Web Cryptography API in browsers.
* [cryptography_flutter](cryptography_flutter)
* Contains cryptographic algorithm implementations that use operating system APIs in Android
and Apple operating systems (iOS, Mac OS X, etc.).
* [cryptography_flutter_integration_test](cryptography_flutter_integration_test)
* Integration test project for "cryptography_flutter".
* [cryptography_test](cryptography_flutter)
* Cross-platform tests. Note that "cryptography" and "cryptography_flutter_integration_test"
contain more tests than just these.
* [jwk](jwk)
* JWK (JSON Web Key) encoding / decoding.

- [cryptography_plus](cryptography)
- Cryptography API for Dart / Flutter.
- Contains cryptographic algorithm implementations written in pure Dart.
- Contains cryptographic algorithm implementations that use Web Cryptography API in browsers.
- [cryptography_flutter_plus](cryptography_flutter)
- Contains cryptographic algorithm implementations that use operating system APIs in Android
and Apple operating systems (iOS, Mac OS X, etc.).
- [cryptography_flutter_integration_test](cryptography_flutter_integration_test)
- Integration test project for "cryptography_flutter".
- [cryptography_test](cryptography_flutter)
- Cross-platform tests. Note that "cryptography" and "cryptography_flutter_integration_test"
contain more tests than just these.
- [jwk_plus](jwk)
- JWK (JSON Web Key) encoding / decoding.

## Contributing

Please share feedback / issue reports in the
[issue tracker](https://github.com/dint-dev/cryptography/issues).
[issue tracker](https://github.com/emz-hanauer/dart-cryptography/issues).

Pull requests are welcome.
Pull requests are welcome.
Loading