summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/type3/SURB.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/noreply/fancydress/type3/SURB.java')
-rw-r--r--src/org/noreply/fancydress/type3/SURB.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/org/noreply/fancydress/type3/SURB.java b/src/org/noreply/fancydress/type3/SURB.java
new file mode 100644
index 0000000..914c3da
--- /dev/null
+++ b/src/org/noreply/fancydress/type3/SURB.java
@@ -0,0 +1,25 @@
+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];
+ }
+}
+