This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Structs and comments taken from uOFW's chkreg pull request #91 https://github.com/uofw/uofw/pull/91 | |
s32 sceIdStorageLookup(u16 key, u32 offset, void *pBuf, u32 len); | |
/** | |
* This structure contains console specific information. It is a subset of the ::SceConsoleId. | |
* Check <openpsid_kernel.h> for possible member values. | |
*/ | |
typedef struct { | |
/* Company code. Set to 1. */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SSH_DIR=$HOME/.ssh/ | |
AUTH_KEYS_DIR=${SSH_DIR}/authorized_keys.d | |
AUTH_KEYS_FILE=${SSH_DIR}/authorized_keys | |
# Utils | |
key-path() { | |
echo "${AUTH_KEYS_DIR}/${1}" |