Skip to content

Instantly share code, notes, and snippets.

View stringang's full-sized avatar

liugang stringang

View GitHub Profile
@stringang
stringang / linux-from-scratch.md
Last active June 29, 2024 10:03
Linux From Scratch (LFS)

Linux From Scratch

caveats

  • 包编译完成删除原代码目录

host requirements

apt install -y binutils bison gcc g++ make texinfo
@stringang
stringang / cryptoDemo.js
Last active November 27, 2018 03:03
AES 加密解密
/**
* 加密/解密计算
* 将 123456 进行 aes-128-ecb 加密(128bit 等于 16Byte)
* created by gang on 2018/11/26
* https://segmentfault.com/a/1190000011041123
*/
const CryptoJS = require('crypto-js');
let key = '033d2ea8e63ac051';