Skip to content

Instantly share code, notes, and snippets.

View raadhshenshahhaseeb's full-sized avatar
📓
Research and Dev

Haseeb Raja raadhshenshahhaseeb

📓
Research and Dev
View GitHub Profile
@paulmillr
paulmillr / BLS_Signature.md
Last active August 26, 2025 00:42
BLS Signature for Busy People

BLS Signature for Busy People

bls12-381 is pairing-friendly Barreto-Lynn-Scott elliptic curve construction allowing to:

  • Construct zk-SNARKs at the ~120-bit security, as per Barbulescu-Duquesne 2017
  • Efficiently verify N aggregate signatures with 1 pairing and N ec additions: the Boneh-Lynn-Shacham signature scheme is orders of magnitude more efficient than Schnorr

BLS can mean 2 different things:

@andou
andou / aliases.md
Last active March 17, 2025 03:38
Cheat-sheet shorthand practical guide to Git
alias glf='git log --simplify-by-decoration --oneline --decorate --name-status'
alias gl='git log --simplify-by-decoration --oneline --decorate'
alias glf='git log --simplify-by-decoration --oneline --decorate --name-status'
alias gll='git log'
alias gs='git status -s -b'
alias gss='git status'
alias ga='git add'
alias gcm='git commit'
alias gc='git checkout'
alias gpl='git pull origin'