Skip to content

Instantly share code, notes, and snippets.

View nandehu0323's full-sized avatar

nandehu0323 nandehu0323

View GitHub Profile
package main
import (
"crypto/sha256"
"encoding/binary"
"fmt"
)
// initial constants K
var K = []uint32{
package main
import (
"encoding/binary"
"fmt"
"io"
"golang.org/x/crypto/ripemd160"
)
@nandehu0323
nandehu0323 / base29.go
Created March 27, 2019 18:10
Base29(it's joke)
package main
import (
"fmt"
"log"
"math/big"
)
// Base29 ...
type Base29 struct {