跳转至

File cipher_map.h

File List > crypto > cipher_map.h

Go to the documentation of this file

#ifndef QQ_MUSIC_CIPHER_MAP_H
#define QQ_MUSIC_CIPHER_MAP_H

#include <cstdint>
#include <qqmusic/crypto/cipher.h>
#include <qqmusic/utils/buffer.h>
#include <vector>

namespace qqmusic::crypto {

class MapCipher : public Cipher {
public:
    explicit MapCipher(const std::vector<uint8_t>& key);

    void decrypt(qqmusic::utils::buffer& buf, size_t offset) override;

private:
    std::vector<uint8_t> key;
};

} // namespace qqmusic::crypto

#endif // !QQ_MUSIC_CIPHER_MAP_H