c2pa_crypto 0.1.0-dev.1
c2pa_crypto: ^0.1.0-dev.1 copied to clipboard
Cryptographic, PKI, timestamp, and revocation support for C2PA.
import 'package:c2pa_crypto/c2pa_crypto.dart';
Future<void> main() async {
final digest = await HashAlgorithm.sha256.digest([1, 2, 3]);
assert(digest.length == HashAlgorithm.sha256.digestLength);
}