AK+Meta+LibCore+Tests: Remove unused SipHash implementation

This is a homegrown implementation that wasn't actually used in
dependent classes. If this is needed in the future, using OpenSSL would
probably be a better option.
This commit is contained in:
rmg-x 2025-04-05 17:48:12 -05:00 committed by Alexander Kalenik
commit 37998895d8
Notes: github-actions[bot] 2025-04-05 23:48:44 +00:00
8 changed files with 0 additions and 261 deletions

View file

@ -140,11 +140,3 @@ struct AK::Formatter<Core::SocketAddress> : Formatter<ByteString> {
return Formatter<ByteString>::format(builder, value.to_byte_string());
}
};
template<>
struct AK::Traits<Core::SocketAddress> : public DefaultTraits<Core::SocketAddress> {
static unsigned hash(Core::SocketAddress const& socket_address)
{
return pair_int_hash(Traits<IPv4Address>::hash(socket_address.ipv4_address()), Traits<u16>::hash(socket_address.port()));
}
};