This file contains 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
const X25519 = require('./x25519.min.js'); | |
const hexToBytes = e => new Uint8Array(e.match(/[0-9a-f]{2}/gi).map(e => parseInt(e, 16))); | |
const bytesToHex = e => Array.from(e).map(e => e.toString(16).padStart(2, 0)).join(''); | |
// Test vector from: | |
// https://datatracker.ietf.org/doc/html/rfc7748.html#section-6.1 | |
const privateA = hexToBytes('77076d0a7318a57d3c16c17251b26645df4c2f87ebc0992ab177fba51db92c2a'); | |
const privateB = hexToBytes('5dab087e624a8a4b79e17f8b83800ee66f3bb1292618b6fd1c2f8b27ff88e0eb'); | |
const publicA = X25519.getPublic(privateA); |
This file contains 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
const charset = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~'; | |
const charsetReverse = charset | |
.split('') | |
.reduce((acc, cur, idx) => { | |
acc[cur] = idx; | |
return acc; | |
}, {}); | |
/** | |
* @param {Uint8Array} data |
This file contains 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
const generatePerm = (len, rng) => { | |
const result = new Array(len); | |
for (let i = 0; i < len; i++) { | |
result[i] = i; | |
} | |
for (let i = len - 1; i >= 0; i--) { | |
const j = rng() % (i + 1); | |
[result[i], result[j]] = [result[j], result[i]]; | |
} | |
return result; |
This file contains 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
import ctypes | |
class Xoshiro128ss: | |
def __init__(self, a: int, b: int, c: int, d: int): | |
self.s = tuple(ctypes.c_uint32(x) for x in (a, b, c, d)) | |
self.t = ctypes.c_uint32() | |
self.r = ctypes.c_uint32() | |
def randInt(self) -> int: | |
s0, s1, s2, s3 = self.s |
This file contains 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
import argparse | |
import multiprocessing | |
import re | |
import os | |
import sys | |
import time | |
def parseFileSize(string: str) -> int: | |
try: | |
size, unit = re.search(r'^([0-9]*\.?[0-9]+)((?:b|kb|mb|gb)?)$', (string if type(string) is str else str(string)).lower()).groups() |
This file contains 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
import getpass | |
import pydes | |
import re | |
import requests | |
username = input('Username: ') | |
password = getpass.getpass('Password: ') | |
session = requests.Session() | |
response = session.get('https://icas.jnu.edu.cn/cas/login') |
This file contains 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
<?php | |
/* | |
PHAR打包脚本 | |
使用方法: | |
php phar-builder.php /path/to/build/config.json | |
打包配置文件: | |
{ | |
// 项目名称,也是打包的文件名称 |
This file contains 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
/** | |
* Random number generator "xoshiro128**". | |
* @see http://prng.di.unimi.it/xoshiro128starstar.c | |
*/ | |
class Xoshiro128ss { | |
/** | |
* Init the RNG with given seed. | |
* The default seed is taken from current timestamp. | |
* @param {Number} [a] | |
* @param {Number} [b] |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
</head> | |
<body> | |
<script src="https://cdn.jsdelivr.net/gh/w3c/IntersectionObserver/polyfill/intersection-observer.min.js"></script> |
This file contains 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
import argparse | |
import json | |
import os | |
import re | |
import requests | |
import requests.exceptions | |
import threading | |
import zipfile | |
from requests.models import Response |