-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpassword.go
56 lines (46 loc) · 1.28 KB
/
password.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package main
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"crypto/sha256"
"encoding/base64"
"errors"
"io"
)
func encryptPass(key []byte, message string) (encmess string, err error) {
plainText := []byte(message)
hashedKey := sha256.Sum256([]byte(key))
block, err := aes.NewCipher(hashedKey[:])
if err != nil {
return "", err
}
cipherText := make([]byte, aes.BlockSize+len(plainText))
iv := cipherText[:aes.BlockSize]
if _, err = io.ReadFull(rand.Reader, iv); err != nil {
return "", err
}
stream := cipher.NewCFBEncrypter(block, iv)
stream.XORKeyStream(cipherText[aes.BlockSize:], plainText)
return base64.URLEncoding.EncodeToString(cipherText), nil
}
func decryptPass(key []byte, securemess string) (decodedmess string, err error) {
cipherText, err := base64.URLEncoding.DecodeString(securemess)
if err != nil {
return "", err
}
hashedKey := sha256.Sum256([]byte(key))
block, err := aes.NewCipher(hashedKey[:])
if err != nil {
return "", err
}
if len(cipherText) < aes.BlockSize {
err = errors.New("ciphertext block size is too short")
return "", err
}
iv := cipherText[:aes.BlockSize]
cipherText = cipherText[aes.BlockSize:]
stream := cipher.NewCFBDecrypter(block, iv)
stream.XORKeyStream(cipherText, cipherText)
return string(cipherText), nil
}