summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/type3/SURB.java
blob: 914c3da3700878d7076bf60f659dec26d9afad14 (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
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];
	}
}