// SPDX-FileCopyrightText: 2021 Paul Schaub // // SPDX-License-Identifier: Apache-2.0 package sop; import java.util.Arrays; import java.util.regex.Matcher; import java.util.regex.Pattern; import sop.util.HexUtil; public class SessionKey { private static final Pattern PATTERN = Pattern.compile("^(\\d):([0-9a-fA-F]+)$"); private final byte algorithm; private final byte[] sessionKey; public SessionKey(byte algorithm, byte[] sessionKey) { this.algorithm = algorithm; this.sessionKey = sessionKey; } /** * Return the symmetric algorithm octet. * * @return algorithm id */ public byte getAlgorithm() { return algorithm; } /** * Return the session key. * * @return session key */ public byte[] getKey() { return sessionKey; } @Override public int hashCode() { return getAlgorithm() * 17 + Arrays.hashCode(getKey()); } @Override public boolean equals(Object other) { if (other == null) { return false; } if (this == other) { return true; } if (!(other instanceof SessionKey)) { return false; } SessionKey otherKey = (SessionKey) other; return getAlgorithm() == otherKey.getAlgorithm() && Arrays.equals(getKey(), otherKey.getKey()); } public static SessionKey fromString(String string) { Matcher matcher = PATTERN.matcher(string); if (!matcher.matches()) { throw new IllegalArgumentException("Provided session key does not match expected format."); } byte algorithm = Byte.parseByte(matcher.group(1)); String key = matcher.group(2); return new SessionKey(algorithm, HexUtil.hexToBytes(key)); } @Override public String toString() { return "" + (int) getAlgorithm() + ':' + HexUtil.bytesToHex(sessionKey); } }