mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
implement crypto.sha256 + some crypto cleanup
This commit is contained in:

committed by
Alexander Medvednikov

parent
c0911ea74b
commit
43070412f7
9
vlib/crypto/sha256/sha256_test.v
Normal file
9
vlib/crypto/sha256/sha256_test.v
Normal file
@ -0,0 +1,9 @@
|
||||
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
|
||||
// Use of this source code is governed by an MIT license
|
||||
// that can be found in the LICENSE file.
|
||||
|
||||
import crypto.sha256
|
||||
|
||||
fn test_crypto_sha256() {
|
||||
assert sha256.sum('This is a sha256 checksum.'.bytes()).hex() == 'DC7163299659529EAE29683EB1FFEC50D6C8FC7275ECB10C145FDE0E125B8727'
|
||||
}
|
Reference in New Issue
Block a user