Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
c8c337ce
Commit
c8c337ce
authored
Jan 26, 2016
by
Anthony Woods
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use PBKDF2 to esnure key is 23bytes.
parent
05868bc1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
18 deletions
+17
-18
pkg/util/encryption.go
+15
-15
pkg/util/encryption_test.go
+2
-3
No files found.
pkg/util/encryption.go
View file @
c8c337ce
...
...
@@ -4,13 +4,17 @@ import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"crypto/sha256"
"io"
"github.com/grafana/grafana/pkg/log"
)
const
saltLength
=
8
func
Decrypt
(
payload
[]
byte
,
secret
string
)
[]
byte
{
key
:=
encryptionKeyToBytes
(
secret
)
salt
:=
payload
[
:
saltLength
]
key
:=
encryptionKeyToBytes
(
secret
,
string
(
salt
))
block
,
err
:=
aes
.
NewCipher
(
key
)
if
err
!=
nil
{
...
...
@@ -22,8 +26,8 @@ func Decrypt(payload []byte, secret string) []byte {
if
len
(
payload
)
<
aes
.
BlockSize
{
log
.
Fatal
(
4
,
"payload too short"
)
}
iv
:=
payload
[
:
aes
.
BlockSize
]
payload
=
payload
[
aes
.
BlockSize
:
]
iv
:=
payload
[
saltLength
:
saltLength
+
aes
.
BlockSize
]
payload
=
payload
[
saltLength
+
aes
.
BlockSize
:
]
stream
:=
cipher
.
NewCFBDecrypter
(
block
,
iv
)
...
...
@@ -33,8 +37,9 @@ func Decrypt(payload []byte, secret string) []byte {
}
func
Encrypt
(
payload
[]
byte
,
secret
string
)
[]
byte
{
key
:=
encryptionKeyToBytes
(
secret
)
salt
:=
GetRandomString
(
saltLength
)
key
:=
encryptionKeyToBytes
(
secret
,
salt
)
block
,
err
:=
aes
.
NewCipher
(
key
)
if
err
!=
nil
{
log
.
Fatal
(
4
,
err
.
Error
())
...
...
@@ -42,25 +47,20 @@ func Encrypt(payload []byte, secret string) []byte {
// The IV needs to be unique, but not secure. Therefore it's common to
// include it at the beginning of the ciphertext.
ciphertext
:=
make
([]
byte
,
aes
.
BlockSize
+
len
(
payload
))
iv
:=
ciphertext
[
:
aes
.
BlockSize
]
ciphertext
:=
make
([]
byte
,
saltLength
+
aes
.
BlockSize
+
len
(
payload
))
copy
(
ciphertext
[
:
saltLength
],
[]
byte
(
salt
))
iv
:=
ciphertext
[
saltLength
:
saltLength
+
aes
.
BlockSize
]
if
_
,
err
:=
io
.
ReadFull
(
rand
.
Reader
,
iv
);
err
!=
nil
{
log
.
Fatal
(
4
,
err
.
Error
())
}
stream
:=
cipher
.
NewCFBEncrypter
(
block
,
iv
)
stream
.
XORKeyStream
(
ciphertext
[
aes
.
BlockSize
:
],
payload
)
stream
.
XORKeyStream
(
ciphertext
[
saltLength
+
aes
.
BlockSize
:
],
payload
)
return
ciphertext
}
// Key needs to be 32bytes
func
encryptionKeyToBytes
(
secret
string
)
[]
byte
{
key
:=
make
([]
byte
,
32
,
32
)
keyBytes
:=
[]
byte
(
secret
)
secretLength
:=
len
(
keyBytes
)
for
i
:=
0
;
i
<
32
;
i
++
{
key
[
i
]
=
keyBytes
[
i
%
secretLength
]
}
return
key
func
encryptionKeyToBytes
(
secret
,
salt
string
)
[]
byte
{
return
PBKDF2
([]
byte
(
secret
),
[]
byte
(
salt
),
10000
,
32
,
sha256
.
New
)
}
pkg/util/encryption_test.go
View file @
c8c337ce
...
...
@@ -10,12 +10,11 @@ func TestEncryption(t *testing.T) {
Convey
(
"When getting encryption key"
,
t
,
func
()
{
key
:=
encryptionKeyToBytes
(
"secret"
)
key
:=
encryptionKeyToBytes
(
"secret"
,
"salt"
)
So
(
len
(
key
),
ShouldEqual
,
32
)
key
=
encryptionKeyToBytes
(
"a very long secret key that is larger then 32bytes"
)
key
=
encryptionKeyToBytes
(
"a very long secret key that is larger then 32bytes"
,
"salt"
)
So
(
len
(
key
),
ShouldEqual
,
32
)
})
Convey
(
"When decrypting basic payload"
,
t
,
func
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment