File: adata.go

package info (click to toggle)
privatebin-cli 2.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 352 kB
  • sloc: makefile: 14
file content (175 lines) | stat: -rw-r--r-- 3,656 bytes parent folder | download | duplicates (2)
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
// Copyright (c) 2020-2024 Bryan Frimin <bryan@frimin.fr>.
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.

package privatebin

import (
	"encoding/base64"
	"encoding/json"
)

type (
	AData struct {
		Spec             Spec
		Formatter        string
		OpenDiscussion   bool
		BurnAfterReading bool
	}

	Spec struct {
		IV          []byte
		Salt        []byte
		Iterations  int
		KeySize     int
		TagSize     int
		Algorithm   EncryptionAlgorithm
		Mode        EncryptionMode
		Compression CompressionAlgorithm
	}
)

func (adata AData) MarshalJSON() ([]byte, error) {
	return json.Marshal(
		[4]any{
			adata.Spec,
			adata.Formatter,
			btoi(adata.OpenDiscussion),
			btoi(adata.BurnAfterReading),
		},
	)
}

func (adata *AData) UnmarshalJSON(data []byte) error {
	var values [4]json.RawMessage
	err := json.Unmarshal(data, &values)
	if err != nil {
		return err
	}

	var spec Spec
	err = json.Unmarshal(values[0], &spec)
	if err != nil {
		return err
	}

	var (
		formatter                       string
		openDiscussion, burnAterReading int
	)

	err = json.Unmarshal(values[1], &formatter)
	if err != nil {
		return err
	}

	err = json.Unmarshal(values[2], &openDiscussion)
	if err != nil {
		return err
	}

	err = json.Unmarshal(values[3], &burnAterReading)
	if err != nil {
		return err
	}

	*adata = AData{spec, formatter, itob(openDiscussion), itob(burnAterReading)}

	return nil
}

func (spec Spec) MarshalJSON() ([]byte, error) {
	return json.Marshal(
		[8]any{
			base64.StdEncoding.EncodeToString(spec.IV),
			base64.StdEncoding.EncodeToString(spec.Salt),
			spec.Iterations,
			spec.KeySize,
			spec.TagSize,
			spec.Algorithm,
			spec.Mode,
			spec.Compression,
		},
	)
}

func (spec *Spec) UnmarshalJSON(data []byte) error {
	var values [8]json.RawMessage
	err := json.Unmarshal(data, &values)
	if err != nil {
		return err
	}

	var (
		encodedIv, encodedSalt       string
		iv, salt                     []byte
		iterations, keySize, tagSize int
		algorithm                    EncryptionAlgorithm
		mode                         EncryptionMode
		compression                  CompressionAlgorithm
	)

	err = json.Unmarshal(values[0], &encodedIv)
	if err != nil {
		return err
	}

	iv, err = decode64(encodedIv)
	if err != nil {
		return err
	}

	err = json.Unmarshal(values[1], &encodedSalt)
	if err != nil {
		return err
	}

	salt, err = decode64(encodedSalt)
	if err != nil {
		return err
	}

	err = json.Unmarshal(values[2], &iterations)
	if err != nil {
		return err
	}

	err = json.Unmarshal(values[3], &keySize)
	if err != nil {
		return err
	}

	err = json.Unmarshal(values[4], &tagSize)
	if err != nil {
		return err
	}

	err = json.Unmarshal(values[5], &algorithm)
	if err != nil {
		return err
	}

	err = json.Unmarshal(values[6], &mode)
	if err != nil {
		return err
	}

	err = json.Unmarshal(values[7], &compression)
	if err != nil {
		return err
	}

	*spec = Spec{iv, salt, iterations, keySize, tagSize, algorithm, mode, compression}

	return nil
}