Skip to content
This repository was archived by the owner on Sep 6, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ sessions/session_*
templates/_local.tmpl
xattr
accounts/*
.idea

node_modules
build
Expand Down
2 changes: 1 addition & 1 deletion auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"sync"
"time"

"code.google.com/p/go.crypto/scrypt"
"golang.org/x/crypto/scrypt"
"github.com/DHowett/ghostbin/account"
"github.com/golang/glog"
"github.com/golang/groupcache/lru"
Expand Down
2 changes: 1 addition & 1 deletion paste.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"code.google.com/p/go.crypto/scrypt"
"golang.org/x/crypto/scrypt"
"crypto/aes"
"crypto/cipher"
"github.com/DHowett/go-xattr"
Expand Down