Skip to content

Instantly share code, notes, and snippets.

View Arzumify's full-sized avatar

Arzumify Arzumify

  • None
  • None
View GitHub Profile
@Arzumify
Arzumify / main.go
Last active April 19, 2024 18:34
Werkzeug security hashes in go
// This isn't a full blown module, just copy the imports and copy the functions to use. Code is self explanatory.
import (
"encoding/hex"
"fmt"
"strings"
"math/rand"
"golang.org/x/crypto/scrypt"
)