affinidi_tdk_cryptography 1.0.14 copy "affinidi_tdk_cryptography: ^1.0.14" to clipboard
affinidi_tdk_cryptography: ^1.0.14 copied to clipboard

Cryptography package for Affinidi TDK that provides cryptographic functionalities for secure token management, encryption and decryption.

example/main.dart

import 'package:affinidi_tdk_cryptography/affinidi_tdk_cryptography.dart';

Future<void> main() async {
  final vaultEncryptedSeed = ''; // Replace with your Vault's encrypted seed
  final vaultPassword = ''; // Replace with your Vault's password

  final cryptographyService = CryptographyService();

  final String decryptedSeed = cryptographyService.decryptSeed(
    encryptedSeedHex: vaultEncryptedSeed,
    encryptionKeyHex: vaultPassword,
  );

  print('Decrypted Seed: $decryptedSeed');
}
6
likes
145
points
150
downloads

Publisher

verified publisheraffinidi.com

Weekly Downloads

Cryptography package for Affinidi TDK that provides cryptographic functionalities for secure token management, encryption and decryption.

Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

bs58, convert, crypto, cryptography, dart_jsonwebtoken, jwt_decoder, pointycastle, secp256k1

More

Packages that depend on affinidi_tdk_cryptography