cryptography 0.3.5 copy "cryptography: ^0.3.5" to clipboard
cryptography: ^0.3.5 copied to clipboard

outdated

Cryptographic algorithms for digital signature, key agreement, encryption, message authentication, and hashing. X25519, ED25519, AES, Chacha20, and many more.

example/lib/example.dart

import 'package:cryptography/cryptography.dart';

Future<void> main() async {
  // Generate a random 256-bit secret key
  final secretKey = await chacha20.newSecretKey();

  // Generate a random 96-bit nonce.
  final nonce = chacha20.newNonce();

  // Encrypt
  final clearText = [1, 2, 3];
  final cipherText = await chacha20Poly1305Aead.encrypt(
    clearText,
    secretKey: secretKey,
    nonce: nonce,
  );

  print('Bytes: ${chacha20Poly1305Aead.getDataInCipherText(cipherText)}');
  print('MAC: ${chacha20Poly1305Aead.getMacInCipherText(cipherText)}');
}
287
likes
40
points
374k
downloads

Publisher

verified publisherdint.dev

Weekly Downloads

Cryptographic algorithms for digital signature, key agreement, encryption, message authentication, and hashing. X25519, ED25519, AES, Chacha20, and many more.

Repository (GitHub)

License

Apache-2.0 (license)

Dependencies

collection, crypto, js, meta, typed_data

More

Packages that depend on cryptography