package org.noreply.fancydress.type3; import org.noreply.fancydress.type3.routing.*; import org.noreply.fancydress.status.*; import org.noreply.fancydress.crypto.*; public class SURB extends SingleLeg { public SURB (Path path, RoutingDestination address) throws Mix3BadArgumentsChainTooLongException { super(); byte[][] sharedKeys = {}; Hop[] hops = new Hop[0]; // path.getHops(); /* FIXME */ makeLeg ( hops, sharedKeys, address); }; public byte[] getEncryptionKey() { return new byte[16]; } }