mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-09 16:20:26 +00:00
Merge pull request #861 from yggdrasil-network/fix860
Fix panic in `address.GetKey()`
This commit is contained in:
commit
feb02c485a
@ -129,7 +129,11 @@ func (a *Address) GetKey() ed25519.PublicKey {
|
|||||||
bits <<= byte(idx % 8)
|
bits <<= byte(idx % 8)
|
||||||
keyIdx := keyOffset + (idx - addrOffset)
|
keyIdx := keyOffset + (idx - addrOffset)
|
||||||
bits >>= byte(keyIdx % 8)
|
bits >>= byte(keyIdx % 8)
|
||||||
key[keyIdx/8] |= bits
|
idx := keyIdx / 8
|
||||||
|
if idx >= len(key) {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
key[idx] |= bits
|
||||||
}
|
}
|
||||||
for idx := range key {
|
for idx := range key {
|
||||||
key[idx] = ^key[idx]
|
key[idx] = ^key[idx]
|
||||||
|
Loading…
Reference in New Issue
Block a user