2018-02-11 00:16:28 +00:00
|
|
|
// Copyright © 2016 Abcum Ltd
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package mysql
|
|
|
|
|
|
|
|
import (
|
2018-04-04 18:11:59 +00:00
|
|
|
"bytes"
|
2018-02-11 00:16:28 +00:00
|
|
|
"crypto/aes"
|
|
|
|
"crypto/cipher"
|
|
|
|
"crypto/rand"
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
var chars = []byte("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789")
|
|
|
|
|
2018-04-04 18:11:59 +00:00
|
|
|
// Used to see if we can conditionally put a value. We can only put
|
|
|
|
// a value if the value is the same, or if both items are nil.
|
|
|
|
func check(a, b []byte) bool {
|
|
|
|
if a != nil && b != nil {
|
|
|
|
return bytes.Equal(a, b)
|
|
|
|
} else if a == nil && b == nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Used to see if we can conditionally del a value. We can only del
|
|
|
|
// a value if the value is the same, and neither item is nil.
|
|
|
|
func alter(a, b []byte) bool {
|
|
|
|
if a != nil && b != nil {
|
|
|
|
return bytes.Equal(a, b)
|
|
|
|
} else if a == nil && b == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-02-11 00:16:28 +00:00
|
|
|
func encrypt(key []byte, src []byte) (dst []byte, err error) {
|
|
|
|
|
|
|
|
if key == nil || len(key) == 0 || len(src) == 0 {
|
|
|
|
return src, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initiate AES
|
|
|
|
block, _ := aes.NewCipher(key)
|
|
|
|
|
|
|
|
// Initiate cipher
|
|
|
|
cipher, _ := cipher.NewGCM(block)
|
|
|
|
|
|
|
|
// Initiate nonce
|
|
|
|
nonce := random(12)
|
|
|
|
|
|
|
|
dst = cipher.Seal(nil, nonce, src, nil)
|
|
|
|
|
|
|
|
dst = append(nonce[:], dst[:]...)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func decrypt(key []byte, src []byte) (dst []byte, err error) {
|
|
|
|
|
|
|
|
if key == nil || len(key) == 0 || len(src) == 0 {
|
|
|
|
return src, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Corrupt
|
|
|
|
if len(src) < 12 {
|
|
|
|
return src, errors.New("Invalid data")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initiate AES
|
|
|
|
block, _ := aes.NewCipher(key)
|
|
|
|
|
|
|
|
// Initiate cipher
|
|
|
|
cipher, _ := cipher.NewGCM(block)
|
|
|
|
|
|
|
|
return cipher.Open(nil, src[:12], src[12:], nil)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func random(l int) []byte {
|
|
|
|
|
|
|
|
if l == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
i := 0
|
|
|
|
t := len(chars)
|
|
|
|
m := 255 - (256 % t)
|
|
|
|
b := make([]byte, l)
|
|
|
|
r := make([]byte, l+(l/4))
|
|
|
|
|
|
|
|
for {
|
|
|
|
|
|
|
|
rand.Read(r)
|
|
|
|
|
|
|
|
for _, rb := range r {
|
|
|
|
c := int(rb)
|
|
|
|
if c > m {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
b[i] = chars[c%t]
|
|
|
|
i++
|
|
|
|
if i == l {
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|