webcrypto 0.6.0
webcrypto: ^0.6.0 copied to clipboard
Cross-platform implementation of Web Cryptography APIs for Flutter.
0.6.0 #
- Replaced the
KeyPairclass withtypedef KeyPair<T, S> = ({T privateKey, S publicKey})and refactored key generation methods to return a named record. - Bumped minimum required CMake version to
3.10for building the bundled native library (flutter pub run webcrypto:setup).
0.5.8 #
- All classes previously annotated
@sealedare nowfinal! - Migrate from Gradle Imperative Apply to Gradle Plugin DSL.
- Bumped Kotlin Version to 1.7.10.
- Removed the
GCC_WARN_INHIBIT_ALL_WARNINGSoption to ensure compatibitity with Xcode 16. - Code coverage is now 89% as reported to coveralls.io!
- Add support for compiling to WASM.
0.5.7 #
- Added compatibility for AGP 8.4.
- Improved API documentation for ECDH.
- Bumped minimum Android SDK/ API level to 21, dropping support for Android 4 and below.
0.5.6 #
- Disable LTO on Android to fix #80.
- Migrate to
dart:js_interopto ensure wasm compatibility.
0.5.5 #
- Adds a namespace in
build.gradlefor compatibility with AGP 8.0.
0.5.4 #
- Added MacOS desktop support.
- Added Windows desktop support.
- Additional API documentation.
- Add
topicstopubspec.yaml. - Bumped lower bound SDK constraint to require Dart
>= 3.0.0.
0.5.3 #
- Migrate to Flutter 3.0
- Added Linux desktop support.
- Fixed issues with
dart2jsin release mode.
0.5.2 #
- Migrates
dart:ffis genericsizeOfuses, which will be removed in Dart 2.13.
0.5.1 #
- Uses
package:ffigento generate the Dart bindings. - Bumped SDK constraint to Dart 2.12.
0.5.0 #
- Rolled forward all dependencies to Dart 2.12 previews.
- Migrated breaking changes for package:ffi version
1.0.0. - Bumped SDK constraint to Dart 2.12 beta.
0.5.0-null-safety.0 #
- Ported to null-safety without any breaking changes.
0.2.2 #
- Increased Flutter SDK constraint to
>=1.24.0-10.2.pre(current beta), because API version breakage in dynamic linking API for Dart SDK. - Additional documentation for
RsassaPkcs1V15PrivateKeyandRsassaPkcs1V15PublicKey.
0.2.1 #
- Added finalizers for
ssl.EVP_PKEYand running tests undervalgrindunable to find any obvious memory leaks. - Increased Flutter SDK constraint to
>=1.22.0-12.1.pre(current beta).
0.2.0 #
- Added
iossupport. - Added
<2.0.0upper-bound on Flutter SDK constraint.
0.1.2 #
- Fixed sizeof
ssl.CBBcausing occasional segfaults, as we previously allocated too few bytes. - Ported
flutter pub run webcrypto:setupto work on Mac whencmakeis installed.
0.1.1 #
- Removed unused code referencing
dart:cli, causing analysis errors on pub.dev. - Added more API documentation for
AesCbcSecretKey.
0.1.0 #
- Initial release.