You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue seems to be traced to the base32 library in Go when it is decoding the seed, internally it is calling bytes.Map to filter out some characters but this creates an extra copy of the seed and that memory is not cleared.
Issue seems to be traced to the base32 library in Go when it is decoding the seed, internally it is calling
bytes.Map
to filter out some characters but this creates an extra copy of the seed and that memory is not cleared.base32 decode in nkeys lib
https://github.com/nats-io/nkeys/blob/master/strkey.go#L132
base32 calling
bytes.Map
https://github.com/golang/go/blob/master/src/encoding/base32/base32.go#L383
bytes.Map
creating a copy internallyhttps://github.com/golang/go/blob/master/src/bytes/bytes.go#L438-L448
The text was updated successfully, but these errors were encountered: