跳转至

File key_derive.h

FileList > crypto > key_derive.h

Go to the source code of this file

QQ音乐密钥解密算法实现 More...

  • #include <botan/secmem.h>
  • #include <cstdint>
  • #include <qqmusic/result.h>
  • #include <qqmusic/utils/buffer.h>

Namespaces

Type Name
namespace qqmusic
namespace crypto

Classes

Type Name
class KeyDerive

Detailed Description

Author:

kingpoem

Version:

0.1

Date:

2025-03-16 该文件实现QQ音乐加密格式的密钥派生体系,通过解析Base64编码的输入密钥,区分V1/V2两种加密版本, 使用TEA算法进行多层解密(V2需两次TEA+Base64嵌套解密),最终生成用于RC4/mapCipher等音频解密算法的有效密钥。 内部包含数学变换密钥生成、块解密时盐值处理(2字节随机盐+7字节零校验)、以及跨平台兼容的字节序处理等安全机制。

传入的是从ekey提取的Base64编码的密钥字符串 输出的密钥直接用于初始化音频解码器

原始输入ekey → rawKey (base64编码) ↓ 解码 中间数据 → rawKeyDec (可能含V2头) ↓ 去头处理(如果是V2) 核心密文 → raw (V2解密输入) ↓ 双重TEA解密 最终数据 → 再次base64解码 → 最终密钥

Copyright:

Copyright (c) 2025

See also: https://git.unlock-music.dev/um/cli/src/branch/main/algo/qmc/key_derive.go

std::vector<uint8_t> encrypted_key = {...}; // 原始加密密钥
qqmusic::crypto::Decoder Decoder(ekey); // 用ekey初始化解码器,ekey存取为解码器的公有变量
auto key = qqmusic::crypto::KeyDrive::derive(Decoder.ekey);

Note:

该接口未测试,暂不可用


The documentation for this class was generated from the following file include/qqmusic/crypto/key_derive.h