Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Kirill Smelkov
neo
Commits
24c131a6
Commit
24c131a6
authored
Jan 18, 2021
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
9c9b3124
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
14 deletions
+13
-14
go/neo/internal/xsha1/xsha1.go
go/neo/internal/xsha1/xsha1.go
+13
-14
No files found.
go/neo/internal/xsha1/xsha1.go
View file @
24c131a6
...
@@ -17,8 +17,12 @@
...
@@ -17,8 +17,12 @@
// See COPYING file for full licensing terms.
// See COPYING file for full licensing terms.
// See https://www.nexedi.com/licensing for rationale and options.
// See https://www.nexedi.com/licensing for rationale and options.
// Package xsha1, similarly to crypto/sha1, provides SHA1 computation, but
// Package xsha1 provides NEO-flavoured SHA1 sum.
// makes it a noop if requested so from environment.
//
// It is the same as regular SHA1, but returns all-zeros for empty input.
//
// Besides, checksum computation can be switched to be a noop if requested so
// from environment.
package
xsha1
package
xsha1
import
(
import
(
...
@@ -27,7 +31,9 @@ import (
...
@@ -27,7 +31,9 @@ import (
"os"
"os"
)
)
// XXX for benchmarking: how much sha1 computation takes time from latency
// Skip controls and indicates whether NEOSum skips SHA1 computation.
//
// It is used for benchmarking to see how much sha1 computation takes time from latency.
var
Skip
bool
var
Skip
bool
func
init
()
{
func
init
()
{
if
os
.
Getenv
(
"X_NEOGO_SHA1_SKIP"
)
==
"y"
{
if
os
.
Getenv
(
"X_NEOGO_SHA1_SKIP"
)
==
"y"
{
...
@@ -36,23 +42,16 @@ func init() {
...
@@ -36,23 +42,16 @@ func init() {
}
}
}
}
func
Sum
(
b
[]
byte
)
[
sha1
.
Size
]
byte
{
if
!
Skip
{
return
sha1
.
Sum
(
b
)
}
return
[
sha1
.
Size
]
byte
{}
// all 0
}
// NEOSum returns SHA1(b) computed by NEO rules.
// NEOSum returns SHA1(b) computed by NEO rules.
//
//
// it is the same as regular SHA1, but returns all-zeros for empty b.
// it is the same as regular SHA1, but returns all-zeros for empty b.
// https://lab.nexedi.com/nexedi/neoppod/blob/c1c26894/neo/client/app.py#L464-468
// https://lab.nexedi.com/nexedi/neoppod/blob/c1c26894/neo/client/app.py#L464-468
//
// XXX merge into Sum?
func
NEOSum
(
b
[]
byte
)
[
sha1
.
Size
]
byte
{
func
NEOSum
(
b
[]
byte
)
[
sha1
.
Size
]
byte
{
if
len
(
b
)
==
0
{
if
len
(
b
)
==
0
{
return
[
sha1
.
Size
]
byte
{}
// all 0
return
[
sha1
.
Size
]
byte
{}
// all 0
}
}
return
Sum
(
b
)
if
!
Skip
{
return
sha1
.
Sum
(
b
)
}
return
[
sha1
.
Size
]
byte
{}
// all 0
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment