buildPandoraDecrypter function
- String key
Builds a request/response decrypter using the given key
.
Implementation
Converter<String, Uint8List> buildPandoraDecrypter(String key) =>
const HexDecoder().cast<String, List<int>>().fuse<Uint8List>(
BlowfishECB(Uint8List.fromList(utf8.encode(key))).decoder,
);