-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencrypt.go
73 lines (59 loc) · 1.51 KB
/
encrypt.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC
// SPDX-License-Identifier: Apache-2.0
package securly
import (
"github.com/lestrrat-go/jwx/v2/jwa"
"github.com/lestrrat-go/jwx/v2/jwe"
"github.com/lestrrat-go/jwx/v2/jwk"
)
type encrypter struct {
alg jwa.KeyEncryptionAlgorithm
key jwk.Key
}
// newDecoder converts a slice of bytes plus options into a Message.
func newEncrypter(opts ...EncryptOption) (*encrypter, error) {
var rv encrypter
opts = append(opts, validateEncrypt())
for _, opt := range opts {
if opt != nil {
err := opt.apply(&rv)
if err != nil {
return nil, err
}
}
}
return &rv, nil
}
func (enc *encrypter) encrypt(m Message) ([]byte, error) {
switch {
case m.Response == nil:
case m.Response.Alg == "" && m.Response.Key == nil:
case m.Response.Alg != "" && m.Response.Key != nil:
default:
return nil, ErrInvalidEncryptionAlg
}
// Default to what is set in the encryptor.
alg := enc.alg
key := enc.key
if key == nil {
if m.Response == nil || m.Response.Key == nil {
return nil, ErrInvalidEncryptionAlg
}
alg = m.Response.Alg
key = m.Response.Key
}
// If the EncryptWith option was not set, there is no additional response,
// so we should not send the encryption instructions over the wire.
if enc.alg == "" {
m.Response = nil
}
bytes, err := m.MarshalMsg(nil)
if err != nil {
return nil, err
}
payload, err := compress(bytes)
if err != nil {
return nil, err
}
return sanitize(jwe.Encrypt(payload, jwe.WithKey(alg, key)))
}