Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F10528620
pass.go
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
546 B
Subscribers
None
pass.go
View Options
package
auth
import
"golang.org/x/crypto/bcrypt"
func
clear
(
b
[]
byte
)
{
for
i
:=
0
;
i
<
len
(
b
);
i
++
{
b
[
i
]
=
0
}
}
func
HashPass
(
password
[]
byte
)
([]
byte
,
error
)
{
// Clear memory where plaintext password was stored.
// http://stackoverflow.com/questions/18545676/golang-app-engine-securely-hashing-a-users-password#comment36585613_19828153
defer
clear
(
password
)
// Return hash
return
bcrypt
.
GenerateFromPassword
(
password
,
12
)
}
func
Authenticated
(
hash
,
pass
[]
byte
)
bool
{
return
bcrypt
.
CompareHashAndPassword
(
hash
,
pass
)
==
nil
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Apr 6, 12:32 AM (19 h, 25 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3186032
Attached To
rWC Write.as Web Core
Event Timeline
Log In to Comment