Skip to content

Instantly share code, notes, and snippets.

#include <concepts>
using std::size_t;
namespace constexpr_state
{
namespace meta
{
template <typename T>
struct value_tag
@shailist
shailist / get_aes_key.py
Created January 7, 2024 20:08
MapleStory AES Key Extractor
"""
Maplestory AES key finder by shailist
How to use:
$ python get_aes_key_standalone.py <zlz.dll path>
"""
#include <iostream>
struct Object
{
virtual ~Object() = default;
Object()
{
std::cout << "default constructor" << std::endl;
}
#pragma once
#include <type_traits>
template <typename T>
struct is_function_pointer : std::false_type {};
template <typename TRet, typename... TArgs>
struct is_function_pointer<TRet(__cdecl*)(TArgs...)> : std::true_type {};
template <typename TRet, typename... TArgs>
struct is_function_pointer<TRet(__fastcall*)(TArgs...)> : std::true_type {};