Service | SSL | status | Response Type | Allowed methods | Allowed headers |
---|
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
// Left shift operator for Base64Decode (Inno Setup does not support << ) | |
function BitwiseLeftShift (input: LongInt; shiftFactor: Integer): LongInt; | |
var | |
exp: LongInt; // Total to multiply by | |
i: Integer; | |
//Result: LongInt; | |
begin | |
Result := 0; | |
exp := 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
# BinaryIon.pas + DrmIon.pas + IonSymbols.pas | |
import collections | |
import enum | |
import hashlib | |
import hmac | |
import os | |
import os.path | |
import struct |
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
// Modified from: https://gist.github.com/aksakalli/9191056 | |
using System; | |
using System.Collections.Generic; | |
using System.Net; | |
using System.IO; | |
using System.Threading; | |
namespace MyNamespace | |
{ |
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
/********************************************************************** | |
* Copyright (c) 2017, Jochen Hoenicke * | |
* * | |
* Compile with: * | |
* gcc -O2 -I secp256k1/src/ -I secp256k1/ break_short.c -lgmp * | |
**********************************************************************/ | |
#include "libsecp256k1-config.h" | |
#include <stdio.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
using System; | |
using System.ComponentModel; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Runtime.InteropServices; | |
using System.Runtime.Serialization; | |
/// <summary> | |
/// Only for 32 bit processes. The methods of this static class can find the special symbol ThreadStack0, | |
/// and follow pointer chains to return the end result in the specified type T. |
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
--[[ ************************************************************* | |
* Context menu for mpv using Tcl/Tk. Mostly proof of concept. | |
* Avi Halachmi (:avih) https://github.com/avih | |
* | |
* Features: | |
* - Simple construction: ["<some text>", "<mpv-command>"] is a complete menu item. | |
* - Possibly dynamic menu items and commands, disabled items, separators. | |
* - Possibly keeping the menu open after clicking an item (via re-launch). | |
* - Hacky pseudo sub menus. Really, this is an ugly hack. | |
* - Reasonably well behaved/integrated considering it's an external application. |
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
using System; | |
using System.Linq; | |
namespace MD5 | |
{ | |
/// <summary> | |
/// RFC for MD5 https://tools.ietf.org/html/rfc1321 | |
/// Based on the pseudo code from Wikipedia: https://en.wikipedia.org/wiki/MD5 | |
/// </summary> | |
public class MD5 |
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
# download | |
aria2c -x 5 -i file.m3u8 | |
# decode (example) | |
openssl aes-128-cbc -d -K 15D0F46608409DA364E3F5D92BDE9F61 -iv 00000000000000000000000000000000 -nosalt -in G00000000.ts -out G00000000.d.ts | |
# join all ts files | |
cat *.ts > out.ts | |
# convert ts output file |