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
''' | |
Implementations of some basic elliptic curve cryptography primitivese. | |
Behavior specified by SECG in SEC1 version 1 and 2. | |
Also ANSI X9.63. | |
Curves specified from SEC2 version 1 and 2, | |
and NIST "Recommended Elliptic Curves for Federal Government Use". | |
See: http://en.wikipedia.org/wiki/Elliptic_curve_cryptography and |
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
// RyuaNerin | |
// 2016-02-18 | |
using System; | |
using System.Text; | |
namespace RyuaNerin | |
{ | |
public class EngHanConverter | |
{ |
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
#!/bin/python3 | |
# -*- coding: utf-8 -*- | |
import enum | |
import math | |
import random | |
import threading | |
import time | |
import tkinter as tk | |
import typing |
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
Python 27 hrs 18 mins βββββββββββββββββββββ 74.8% | |
Markdown 5 hrs 51 mins βββββββββββββββββββββ 16.0% | |
CSV 2 hrs 2 mins βββββββββββββββββββββ 5.6% | |
Text 39 mins βββββββββββββββββββββ 1.8% | |
C# 16 mins βββββββββββββββββββββ 0.8% |
I hereby claim:
- I am RyuaNerin on github.
- I am ryuanerin (https://keybase.io/ryuanerin) on keybase.
- I have a public key whose fingerprint is D7BB 6E65 6C33 E901 7EA4 DB08 542B E8EA CFB3 1F3E
To claim this, I am signing this object:
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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search] | |
"CortanaConsent"=dword:00000000 | |
"BingSearchEnabled"=dword:00000000 |
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
#!/bin/python3 | |
# -*- coding:utf-8 -*- | |
import os | |
class DoubleLinkedList: | |
class Node: | |
def __init__(self, value): | |
self.value = value | |
self.prev : DoubleLinkedList.Node = None |
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
using System; | |
using System.Linq; | |
using System.Threading.Tasks; | |
namespace TaskExtension | |
{ | |
internal static class TaskHelper | |
{ | |
private struct VoidResult | |
{ |
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
using System; | |
using System.Collections.Concurrent; | |
using System.Collections.Generic; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace test222 | |
{ | |
class Program | |
{ |
NewerOlder