Hallo Christian,
AMSCO ist ein relativ einfacher Transpositions-Algorithmus und wird auf der von dir verlinkten Seite relativ gut beschrieben. Eine Chiffrier-Funktion hätte bei mir diese Signatur:
Delphi-Quellcode:
procedure ScottEncode(
const plain: string; // plain text message
code: Cardinal; // permutation of column numbers
singleFirst: Boolean; // start a-bc or ab-c ?
groupSize: Byte; // size of returned groups
Result: TStrings // returned groups
);
Grüße vom marabu