aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/conf/dpapi/dpapi_windows.go
blob: 45ad950e541a24946cd54db7dac0751ca11c120f (plain) (blame)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2019-2020 WireGuard LLC. All Rights Reserved.
 */

package dpapi

import (
	"errors"
	"runtime"
	"unsafe"
	"fmt"

	"golang.org/x/sys/windows"
)

func bytesToBlob(bytes []byte) *windows.DataBlob {
       blob := &windows.DataBlob{Size: uint32(len(bytes))}
       if len(bytes) > 0 {
               blob.Data = &bytes[0]
       }
       return blob
}

func Encrypt(data []byte, name string) ([]byte, error) {
	out := windows.DataBlob{}
	err := windows.CryptProtectData(bytesToBlob(data), windows.StringToUTF16Ptr(name), nil, 0, nil, windows.CRYPTPROTECT_UI_FORBIDDEN, &out)
	if err != nil {
		return nil, fmt.Errorf("unable to encrypt DPAPI protected data: %w", err)
	}

	outSlice := *(*[]byte)(unsafe.Pointer(&(struct {
		addr *byte
		len  int
		cap  int
	}{out.Data, int(out.Size), int(out.Size)})))
	ret := make([]byte, len(outSlice))
	copy(ret, outSlice)
	windows.LocalFree(windows.Handle(unsafe.Pointer(out.Data)))

	return ret, nil
}

func Decrypt(data []byte, name string) ([]byte, error) {
	out := windows.DataBlob{}
	var outName *uint16
	utf16Name, err := windows.UTF16PtrFromString(name)
	if err != nil {
		return nil, err
	}

	err = windows.CryptUnprotectData(bytesToBlob(data), &outName, nil, 0, nil, windows.CRYPTPROTECT_UI_FORBIDDEN, &out)
	if err != nil {
		return nil, fmt.Errorf("unable to decrypt DPAPI protected data: %w", err)
	}

	outSlice := *(*[]byte)(unsafe.Pointer(&(struct {
		addr *byte
		len  int
		cap  int
	}{out.Data, int(out.Size), int(out.Size)})))
	ret := make([]byte, len(outSlice))
	copy(ret, outSlice)
	windows.LocalFree(windows.Handle(unsafe.Pointer(out.Data)))

	// Note: this ridiculous open-coded strcmp is not constant time.
	different := false
	a := outName
	b := utf16Name
	for {
		if *a != *b {
			different = true
			break
		}
		if *a == 0 || *b == 0 {
			break
		}
		a = (*uint16)(unsafe.Pointer(uintptr(unsafe.Pointer(a)) + 2))
		b = (*uint16)(unsafe.Pointer(uintptr(unsafe.Pointer(b)) + 2))
	}
	runtime.KeepAlive(utf16Name)
	windows.LocalFree(windows.Handle(unsafe.Pointer(outName)))

	if different {
		return nil, errors.New("input name does not match the stored name")
	}

	return ret, nil
}