// A5
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) A5 contributors
/// Converts a hexadecimal string to a u64
///
/// # Arguments
///
/// * `hex` - A string containing a hexadecimal number
///
/// # Returns
///
/// A u64 representing the hexadecimal value
/// Converts a u64 to a hexadecimal string
///
/// # Arguments
///
/// * `value` - A u64 to convert
///
/// # Returns
///
/// A string containing the hexadecimal representation