File: obfuscate.go

package info (click to toggle)
golang-github-newrelic-go-agent 3.15.2-9
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 8,356 kB
  • sloc: sh: 65; makefile: 6
file content (42 lines) | stat: -rw-r--r-- 889 bytes parent folder | download
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
// Copyright 2020 New Relic Corporation. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

package newrelic

import (
	"encoding/base64"
	"errors"
)

// deobfuscate deobfuscates a byte array.
func deobfuscate(in string, key []byte) ([]byte, error) {
	if len(key) == 0 {
		return nil, errors.New("key cannot be zero length")
	}

	decoded, err := base64.StdEncoding.DecodeString(in)
	if err != nil {
		return nil, err
	}

	out := make([]byte, len(decoded))
	for i, c := range decoded {
		out[i] = c ^ key[i%len(key)]
	}

	return out, nil
}

// obfuscate obfuscates a byte array for transmission in CAT and RUM.
func obfuscate(in, key []byte) (string, error) {
	if len(key) == 0 {
		return "", errors.New("key cannot be zero length")
	}

	out := make([]byte, len(in))
	for i, c := range in {
		out[i] = c ^ key[i%len(key)]
	}

	return base64.StdEncoding.EncodeToString(out), nil
}