Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
hdcp-genkey — 从泄露的主密钥生成HDCP源端和接收端密钥 | Kitploit
工具/GitHubGitHub/rjw57/hdcp-genkey
嵌入式系统安全加密/解密工具逆向工程密码学硬件安全
GitHubrjw57/hdcp-genkey

hdcp-genkey

从泄露的主密钥生成HDCP源端和接收端密钥

查看仓库
162304年前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

HDCP 密钥生成示例

此脚本使用泄露的 HDCP 主密钥(位于 master-key.txt 中)在 Python 中实现了 HDCP 密钥生成算法的简化版本。

root@kitploit:~
Usage: generate_key.py [options]

Options:
  -h, --help            show this help message and exit
  -m FILE, --master=FILE
                        load master key from FILE
  -k, --sink            generate a sink key rather than a source key
  --ksv=KSV             use a specific KSV expressed in hexadecimal
  -j, --json            output key and KSV as JSON
  -t, --test            generate source and sink keys and test they work

示例:

root@kitploit:~
# Generate a sink key with KSV 0x54f0af39a8 and output the result in JSON
./generate_key.py -k --ksv 54f0af39a8 -j

# Generate a source key with a random KSV and output the result in a 
# human-readable form
./generate_key.py

# Run a self-test to make sure the source a sink key generation is consistent
./generate_key.py -t
下载工具