factoryConfig property
FactoryConfig
factoryConfig
final
Intended for internal use.
Implementation
// ignore: non_constant_identifier_names
static final FactoryConfig factoryConfig = DynamicFactoryConfig.suffix(
StreamCipher,
'/SIC',
(_, final Match match) => () {
var digestName = match.group(1);
return SICStreamCipher(BlockCipher(digestName!));
});