aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/SharedKeyPacket.h
blob: 4f50ad5c65e36527a6cbcbe446e8c2a5c204c3f6 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#pragma once

#include "Packet.h"

class SharedKeyPacket : public Packet
{
#if 0
	private byte[] keybytes = new byte[]{};
	private byte[] nonce = new byte[]{};

	private SecretKey secretKey;

	public SharedKeyPacket() {
		// Needed
	}

	public SharedKeyPacket(final SecretKey secretKey, final PublicKey publicKey, final byte[] nonce) {
		this.secretKey = secretKey;
		this.keybytes = Crypt.encryptUsingKey(publicKey, secretKey.getEncoded());
		this.nonce = Crypt.encryptUsingKey(publicKey, nonce);
	}

	@Override
		public void read(DataInputStream dis) throws IOException {
			keybytes = readBytes(dis);
			nonce = readBytes(dis);
	}

	@Override
		public void write(DataOutputStream dos) throws IOException {
			writeBytes(dos, keybytes);
			writeBytes(dos, nonce);
	}

	@Override
		public void handle(PacketListener listener) {
			listener.handleSharedKey(this);
	}

	@Override
		public int getEstimatedSize() {
			return 2 + keybytes.length + 2 + nonce.length;
	}

	public SecretKey getSecretKey(PrivateKey privateKey) {
		if (privateKey == null) {
			return secretKey;
		}
		return secretKey = Crypt.decryptByteToSecretKey(privateKey, keybytes);
	}

	public SecretKey getSecretKey() {
		return getSecretKey(null);
	}

	public byte[] getNonce(PrivateKey privateKey) {
		if (privateKey == null) {
			return nonce;
		}
		return Crypt.decryptUsingKey(privateKey, nonce);
	}
#endif
};