mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
all: unwrap const() blocks
This commit is contained in:
parent
399af6768d
commit
f09826e928
436 changed files with 10448 additions and 11207 deletions
|
@ -8,12 +8,10 @@ module sha1
|
|||
|
||||
import math.bits
|
||||
|
||||
const (
|
||||
_k0 = 0x5A827999
|
||||
_k1 = 0x6ED9EBA1
|
||||
_k2 = u32(0x8F1BBCDC)
|
||||
_k3 = u32(0xCA62C1D6)
|
||||
)
|
||||
const _k0 = 0x5A827999
|
||||
const _k1 = 0x6ED9EBA1
|
||||
const _k2 = u32(0x8F1BBCDC)
|
||||
const _k3 = u32(0xCA62C1D6)
|
||||
|
||||
fn block_generic(mut dig Digest, p_ []u8) {
|
||||
unsafe {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue