Skip to content
View y011d4's full-sized avatar

Highlights

  • Pro

Organizations

@pfnet @SECCON @pfnet-research @x-vespiary @WreckTheLine

Block or report y011d4

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. my-ctf-challenges my-ctf-challenges Public

    My CTF challenges, especially cryptography

    Sage 25 1

  2. factor-from-random-known-bits factor-from-random-known-bits Public

    Python's library written in Rust to quickly factor `n = pq` when around >50% bits of `p` and `q` are known which are distributed at random.

    Rust 19 1

  3. snarkpy snarkpy Public

    A zk-SNARK implemented in Python & Rust compatible with snarkjs

    Python 5 1

  4. dotfiles dotfiles Public

    My dotfiles for nvim, fish and i3wm etc. OS: manjaro, WM: i3-wm, Editor: nvim, Shell: fish

    Lua 2

  5. ssh-rust ssh-rust Public

    Simple implementation of SSH client in Rust.

    Rust

  6. simple CSIDH implementation. DO NOT ... simple CSIDH implementation. DO NOT use for cryptographic purpose.
    1
    # Use a small prime for brevity
    2
    p = 4 * 3 * 5 * 7 - 1
    3
    primes = [3, 5, 7]
    4
    Fp = GF(p)
    5