summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/org/noreply/fancydress/type3/Packet.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/org/noreply/fancydress/type3/Packet.java b/src/org/noreply/fancydress/type3/Packet.java
index 6a28791..7738c0a 100644
--- a/src/org/noreply/fancydress/type3/Packet.java
+++ b/src/org/noreply/fancydress/type3/Packet.java
@@ -48,8 +48,9 @@ public class Packet {
// Phase 1
if (leg2 instanceof SURB) {
- byte[] k = ((SURB) leg2).getEncryptionKey();
- p = CryptoPrimitives.sprpDecrypt(k, "PAYLOAD ENCRYPT", p);
+ throw new Error("Not implemented yet");
+ // byte[] k = ((SURB) leg2).getEncryptionKey();
+ // p = CryptoPrimitives.sprpDecrypt(k, "PAYLOAD ENCRYPT", p);
} else {
byte[][] sk = ((ForwardLeg) leg2).getSharedKeys();
for (int i=sk.length-1; i>=0; i--)