2022-01-05 17:06:08 +01:00
|
|
|
## Description:
|
|
|
|
|
2022-01-07 12:28:50 +01:00
|
|
|
`crypto` is a module that exposes cryptographic algorithms to V programs.
|
|
|
|
|
|
|
|
Each submodule implements things differently, so be sure to consider the documentation
|
|
|
|
of the specific algorithm you need, but in general, the method is to create a `cipher`
|
|
|
|
struct using one of the module functions, and then to call the `encrypt` or `decrypt`
|
|
|
|
method on that struct to actually encrypt or decrypt your data.
|
|
|
|
|
|
|
|
This module is a work-in-progress. For example, the AES implementation currently requires you
|
|
|
|
to create a destination buffer of the correct size to receive the decrypted data, and the AesCipher
|
|
|
|
`encrypt` and `decrypt` functions only operate on the first block of the `src`.
|
2022-01-05 17:06:08 +01:00
|
|
|
|
|
|
|
The implementations here are loosely based on [Go's crypto package](https://pkg.go.dev/crypto).
|
2022-01-07 12:28:50 +01:00
|
|
|
|
|
|
|
## Examples:
|
|
|
|
|
|
|
|
```v
|
|
|
|
import crypto.aes
|
|
|
|
import crypto.rand
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// remember to save this key somewhere if you ever want to decrypt your data
|
2022-02-15 17:39:17 +01:00
|
|
|
key := rand.bytes(32) ?
|
2022-01-07 12:28:50 +01:00
|
|
|
println('KEY: $key')
|
|
|
|
|
|
|
|
// this data is one block (16 bytes) big
|
|
|
|
mut data := 'THIS IS THE DATA'.bytes()
|
|
|
|
|
|
|
|
println('generating cipher')
|
|
|
|
cipher := aes.new_cipher(key)
|
|
|
|
|
|
|
|
println('performing encryption')
|
|
|
|
mut encrypted := []byte{len: aes.block_size}
|
2022-01-08 16:08:46 +01:00
|
|
|
cipher.encrypt(mut encrypted, data)
|
2022-01-07 12:28:50 +01:00
|
|
|
println(encrypted)
|
|
|
|
|
|
|
|
println('performing decryption')
|
|
|
|
mut decrypted := []byte{len: aes.block_size}
|
2022-01-08 16:08:46 +01:00
|
|
|
cipher.decrypt(mut decrypted, encrypted)
|
2022-01-07 12:28:50 +01:00
|
|
|
println(decrypted)
|
|
|
|
|
|
|
|
assert decrypted == data
|
|
|
|
}
|
|
|
|
```
|