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
# Basics of Elliptic Curve Cryptography implementation on Python | |
import collections | |
def inv(n, q): | |
"""div on PN modulo a/b mod q as a * inv(b, q) mod q | |
>>> assert n * inv(n, q) % q == 1 | |
""" | |
for i in range(q): | |
if (n * i) % q == 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
// ==UserScript== | |
// @name Dizipal video oncesi reklam gecici | |
// @version 2024-02-03 | |
// @namespace https://dizipal845.com/ | |
// @description Dizipal video oncesi reklamlari gecmek icin bir user script | |
// @author You | |
// @include https://dizipal*.com/* | |
// @icon https://dizipal845.com/favicon-32x32.png | |
// @grant none | |
// ==/UserScript== |
OlderNewer