1#!/usr/bin/env python3
2# coding: utf-8
3#
4# © 2021 Qualcomm Innovation Center, Inc. All rights reserved.
5#
6# SPDX-License-Identifier: BSD-3-Clause
7
8from random import SystemRandom
9rng = SystemRandom()
10print("#define HYP_SYM_VERSION 0x{:x}".format(rng.getrandbits(64)))
11