forked from centrifuge/go-substrate-rpc-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing hasher - substrate rc3 version support (centrifuge#89)
* Revert "Add ExtrinsicSignatureV5 (centrifuge#68)" This reverts commit 461cf42. * Add missing hasher * review comments * fix test
- Loading branch information
1 parent
9cfd4a7
commit 3010561
Showing
5 changed files
with
218 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
// Go Substrate RPC Client (GSRPC) provides APIs and types around Polkadot and any Substrate-based chain RPC calls | ||
// | ||
// Copyright 2019 Centrifuge GmbH | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package hash | ||
|
||
import ( | ||
"hash" | ||
|
||
"golang.org/x/crypto/blake2b" | ||
) | ||
|
||
type blake2b128Concat struct { | ||
hasher hash.Hash | ||
data []byte | ||
} | ||
|
||
// NewBlake2b128Concat returns an instance of blake2b concat hasher | ||
func NewBlake2b128Concat(k []byte) (hash.Hash, error) { | ||
h, err := blake2b.New(16, k) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &blake2b128Concat{hasher: h, data: k}, nil | ||
} | ||
|
||
// Write (via the embedded io.Writer interface) adds more data to the running hash. | ||
func (bc *blake2b128Concat) Write(p []byte) (n int, err error) { | ||
bc.data = append(bc.data, p...) | ||
return bc.hasher.Write(p) | ||
} | ||
|
||
// Sum appends the current hash to b and returns the resulting slice. | ||
// It does not change the underlying hash state. | ||
func (bc *blake2b128Concat) Sum(b []byte) []byte { | ||
return append(bc.hasher.Sum(b), bc.data...) | ||
} | ||
|
||
// Reset resets the Hash to its initial state. | ||
func (bc *blake2b128Concat) Reset() { | ||
bc.data = nil | ||
bc.hasher.Reset() | ||
} | ||
|
||
// Size returns the number of bytes Sum will return. | ||
func (bc *blake2b128Concat) Size() int { | ||
return len(bc.Sum(nil)) | ||
} | ||
|
||
// BlockSize returns the hash's underlying block size. | ||
// The Write method must be able to accept any amount | ||
// of data, but it may operate more efficiently if all writes | ||
// are a multiple of the block size. | ||
func (bc *blake2b128Concat) BlockSize() int { | ||
return bc.hasher.BlockSize() | ||
} | ||
|
||
// NewBlake2b128 returns blake2b-128 hasher | ||
func NewBlake2b128(k []byte) (hash.Hash, error) { | ||
return blake2b.New(16, k) | ||
} | ||
|
||
// NewBlake2b256 returns blake2b-256 hasher | ||
func NewBlake2b256(k []byte) (hash.Hash, error) { | ||
return blake2b.New256(k) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// Go Substrate RPC Client (GSRPC) provides APIs and types around Polkadot and any Substrate-based chain RPC calls | ||
// | ||
// Copyright 2019 Centrifuge GmbH | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package hash | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestBlake2_128Concat(t *testing.T) { | ||
h, err := NewBlake2b128Concat(nil) | ||
assert.NoError(t, err) | ||
n, err := h.Write([]byte("abc")) | ||
assert.NoError(t, err) | ||
assert.Equal(t, 3, n) | ||
assert.Equal(t, []byte{ | ||
0xcf, 0x4a, 0xb7, 0x91, 0xc6, 0x2b, 0x8d, 0x2b, 0x21, 0x9, 0xc9, 0x2, 0x75, 0x28, 0x78, 0x16, 0x61, 0x62, 0x63, | ||
}, h.Sum(nil)) | ||
assert.Equal(t, 128, h.BlockSize()) | ||
assert.Equal(t, 19, h.Size()) | ||
h.Reset() | ||
assert.Equal(t, 16, h.Size()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// Go Substrate RPC Client (GSRPC) provides APIs and types around Polkadot and any Substrate-based chain RPC calls | ||
// | ||
// Copyright 2019 Centrifuge GmbH | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package hash | ||
|
||
import ( | ||
"hash" | ||
) | ||
|
||
type identity struct { | ||
data []byte | ||
} | ||
|
||
func NewIdentity(b []byte) hash.Hash { | ||
return &identity{data: b} | ||
} | ||
|
||
// Write (via the embedded io.Writer interface) adds more data to the running hash. | ||
// It never returns an error. | ||
func (i *identity) Write(p []byte) (n int, err error) { | ||
i.data = append(i.data, p...) | ||
return len(p), nil | ||
} | ||
|
||
// Sum appends the current hash to b and returns the resulting slice. | ||
// It does not change the underlying hash state. | ||
func (i *identity) Sum(b []byte) []byte { | ||
return append(b, i.data...) | ||
} | ||
|
||
// Reset resets the Hash to its initial state. | ||
func (i *identity) Reset() { | ||
i.data = make([]byte, 0) | ||
} | ||
|
||
// Size returns the number of bytes Sum will return. | ||
func (i *identity) Size() int { | ||
return len(i.Sum(nil)) | ||
} | ||
|
||
// BlockSize returns the hash's underlying block size. | ||
// The Write method must be able to accept any amount | ||
// of data, but it may operate more efficiently if all writes | ||
// are a multiple of the block size. | ||
func (i *identity) BlockSize() int { | ||
return 0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Go Substrate RPC Client (GSRPC) provides APIs and types around Polkadot and any Substrate-based chain RPC calls | ||
// | ||
// Copyright 2019 Centrifuge GmbH | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package hash | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestIdentity(t *testing.T) { | ||
h := NewIdentity([]byte("abc")) | ||
assert.Equal(t, []byte{0x61, 0x62, 0x63}, h.Sum(nil)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters