blob: 1a691a6cab428470977e6d545329b7d933cc861a [file] [log] [blame]
Yi Zheng7ace1cc2016-05-11 18:45:20 +08001/*
2 * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
3 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yi Zheng7ace1cc2016-05-11 18:45:20 +08005 */
Antonio Nino Diazc3cf06f2018-11-08 10:20:19 +00006#ifndef CRYPT_H
7#define CRYPT_H
Yi Zheng7ace1cc2016-05-11 18:45:20 +08008
9#include <stdint.h>
10
11/* crypt function prototype */
12uint64_t crypt_set_hdcp_key_ex(uint64_t x1, uint64_t x2, uint64_t x3);
13uint64_t crypt_set_hdcp_key_num(uint32_t num);
14uint64_t crypt_clear_hdcp_key(void);
15
Antonio Nino Diazc3cf06f2018-11-08 10:20:19 +000016#endif /* CRYPT_H */