17ace1cc0SYi Zheng /* 27ace1cc0SYi Zheng * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved. 37ace1cc0SYi Zheng * 4*82cb2c1aSdp-arm * SPDX-License-Identifier: BSD-3-Clause 57ace1cc0SYi Zheng */ 67ace1cc0SYi Zheng #ifndef __CRYPT_H__ 77ace1cc0SYi Zheng #define __CRYPT_H__ 87ace1cc0SYi Zheng 97ace1cc0SYi Zheng #include <stdint.h> 107ace1cc0SYi Zheng 117ace1cc0SYi Zheng /* crypt function prototype */ 127ace1cc0SYi Zheng uint64_t crypt_set_hdcp_key_ex(uint64_t x1, uint64_t x2, uint64_t x3); 137ace1cc0SYi Zheng uint64_t crypt_set_hdcp_key_num(uint32_t num); 147ace1cc0SYi Zheng uint64_t crypt_clear_hdcp_key(void); 157ace1cc0SYi Zheng 167ace1cc0SYi Zheng #endif /* __CRYPT_H__ */ 17