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
// Uncompress Zyxel WAP3205 etc. LZSS compressed config files | |
// These are in format <Config_Information_File_8671> | |
// Format description: https://qhimm-modding.fandom.com/wiki/FF7/LZS_format | |
// Author: [email protected] 05/2023 | |
// | |
// gcc -o lzss lzss.c | |
// | |
#include <arpa/inet.h> | |
#include <stdio.h> | |
#include <string.h> |
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
// C implementation of .NET PasswordDeriveBytes function for Win32 | |
// Written by [email protected] | |
/* | |
PBKDF1_MS (P, S, c, dkLen) | |
Options: Hash underlying hash function | |
Input: P password, an octet string | |
S salt, an eight-octet string |