Add a fictional cipher from "supergirl"

This commit is contained in:
zontreck 2024-07-27 02:27:08 -07:00
parent 1525640d19
commit c789219481
6 changed files with 105 additions and 2 deletions

9
test/ciphers.dart Normal file
View file

@ -0,0 +1,9 @@
import 'package:libac_dart/utils/DBIKC.dart';
import 'package:test/expect.dart';
import 'package:test/scaffolding.dart';
void main() {
test("DBIKC", () {
expect("KAZNIA", DoubleBreastedInterruptedKeyCipher.encode("RUBNIU"));
});
}