Sample code for 30+ languages & platforms
Dart

Example: Crypt2.EncryptEncoded method

Demonstrates how to call the EncryptEncoded method.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  final crypt = CkCrypt2();

  crypt.cryptAlgorithm = 'aes';
  crypt.cipherMode = 'cbc';
  crypt.keyLength = 128;
  crypt.setEncodedKey('000102030405060708090A0B0C0D0E0F', 'hex');
  crypt.setEncodedIV('000102030405060708090A0B0C0D0E0F', 'hex');

  // Encrypt the bytes 0x00, 0x01, 0x02, ... 0x0A
  // and return the encrypted bytes using the lowercase hex encoding.
  crypt.encodingMode = 'hex_lower';
  final encrypted = crypt.encryptEncoded('000102030405060708090a');
  print(encrypted);

  // Output:
  // 9da2ae71a5378487114b430e5e230378

  final decrypted = crypt.decryptEncoded(encrypted);
  print(decrypted);

  // Output:
  // 000102030405060708090a
}