New syntax in reference implementation
This commit is contained in:
parent
2be92acc34
commit
1adfb20993
1 changed files with 2 additions and 2 deletions
|
@ -65,8 +65,8 @@ VALUE m_blake2_digest(VALUE self, VALUE _input, VALUE _representation) {
|
|||
|
||||
Data_Get_Struct(self, Blake2, blake2);
|
||||
|
||||
blake2b(blake2->output, input, blake2->key_bytes,
|
||||
blake2->output_length, input_length, blake2->key_length);
|
||||
blake2b(blake2->output, blake2->output_length, input, input_length,
|
||||
blake2->key_bytes, blake2->key_length);
|
||||
|
||||
VALUE result;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue