1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-23 04:09:29 +08:00
Files
Alas/blcrack/cracker/Dobby/source/dobby/pac_kit.h
2025-11-01 00:23:46 +08:00

31 lines
621 B
C

#pragma once
#include <stdint.h>
#if defined(__arm64e__) && __has_feature(ptrauth_calls)
#include <ptrauth.h>
#endif
static inline void *pac_strip(void *addr) {
if (addr == NULL) {
return NULL;
}
#if __has_feature(ptrauth_calls)
addr = ptrauth_strip(addr, ptrauth_key_asia);
#endif
return addr;
}
static inline void *pac_sign(void *addr) {
if (addr == NULL) {
return NULL;
}
#if __has_feature(ptrauth_calls)
addr = ptrauth_sign_unauthenticated((void *)addr, ptrauth_key_asia, 0);
#endif
return addr;
}
static inline void *pac_strip_and_sign(void *addr) {
return pac_sign(pac_strip(addr));
}