summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/type3/SURB.java
blob: 400db345b0de5d0fe0fdd86a82e9ea2955737d28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* $Id$ */
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];
	}
}