surrealpatch/util/cryp/cryp.go

72 lines
1.4 KiB
Go
Raw Normal View History

2016-05-21 17:05:11 +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 cryp
import (
"crypto/aes"
"crypto/cipher"
2016-09-14 16:02:48 +00:00
"errors"
2016-05-23 13:08:59 +00:00
"github.com/abcum/surreal/util/rand"
2016-05-21 17:05:11 +00:00
)
func Encrypt(key []byte, src []byte) (dst []byte, err error) {
2016-07-18 13:24:48 +00:00
if len(key) == 0 || len(src) == 0 {
2016-05-24 09:27:46 +00:00
return src, nil
}
2016-08-28 08:28:33 +00:00
// Initiate AES
2016-05-21 17:05:11 +00:00
block, err := aes.NewCipher(key)
if err != nil {
return
}
// Initiate cipher
cipher, _ := cipher.NewGCM(block)
2016-05-21 17:05:11 +00:00
2016-05-23 13:08:59 +00:00
nonce := rand.New(12)
2016-05-21 17:05:11 +00:00
dst = cipher.Seal(nil, nonce, src, nil)
dst = append(nonce[:], dst[:]...)
return
}
func Decrypt(key []byte, src []byte) (dst []byte, err error) {
2016-07-18 13:24:48 +00:00
if len(key) == 0 || len(src) == 0 {
2016-05-24 09:27:46 +00:00
return src, nil
}
// Corrupt
if len(src) < 12 {
2016-09-14 16:02:48 +00:00
return src, errors.New("Invalid data")
}
2016-08-28 08:28:33 +00:00
// Initiate AES
2016-05-21 17:05:11 +00:00
block, err := aes.NewCipher(key)
if err != nil {
return
}
// Initiate cipher
cipher, _ := cipher.NewGCM(block)
2016-05-21 17:05:11 +00:00
return cipher.Open(nil, src[:12], src[12:], nil)
}