developer | eee2980 | 2016-05-11 18:45:20 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
developer | eee2980 | 2016-05-11 18:45:20 +0800 | [diff] [blame] | 5 | */ |
| 6 | #ifndef __CRYPT_H__ |
| 7 | #define __CRYPT_H__ |
| 8 | |
| 9 | #include <stdint.h> |
| 10 | |
| 11 | /* crypt function prototype */ |
| 12 | uint64_t crypt_set_hdcp_key_ex(uint64_t x1, uint64_t x2, uint64_t x3); |
| 13 | uint64_t crypt_set_hdcp_key_num(uint32_t num); |
| 14 | uint64_t crypt_clear_hdcp_key(void); |
| 15 | |
| 16 | #endif /* __CRYPT_H__ */ |