File cipher_tea.h
FileList > crypto > cipher_tea.h
Go to the source code of this file
TEA算法解密实现 More...
#include <botan/secmem.h>
#include <cstdint>
#include <qqmusic/utils/buffer.h>
Namespaces
Type | Name |
---|---|
namespace | qqmusic |
namespace | crypto |
namespace | TeaCipher |
Detailed Description
Author:
kingpoem
Version:
0.1
Date:
2025-03-22 实现QQ音乐加密格式使用的TEA变种算法,支持32轮解密,每次解密8字节
Copyright:
Copyright (c) 2025
See also: https://pkg.go.dev/golang.org/x/crypto/tea
for (size_t offset = 0; offset < buf.size(); offset += 8) {
qqmusic::crypto::TeaCipher::decrypt(buf, offset, key);
}
Note:
该接口未测试,暂不可用
The documentation for this class was generated from the following file include/qqmusic/crypto/cipher_tea.h