2022-02-24 13:38:21 +01:00
|
|
|
// The source code refers to the go standard library, which will be combined with AES in the future.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
//
|
|
|
|
// OFB (Output Feedback) Mode.
|
|
|
|
// See NIST SP 800-38A, pp 13-15
|
|
|
|
module cipher
|
|
|
|
|
|
|
|
import crypto.internal.subtle
|
|
|
|
|
|
|
|
struct Ofb {
|
|
|
|
mut:
|
|
|
|
b Block
|
2022-04-15 14:35:35 +02:00
|
|
|
next []u8
|
|
|
|
out []u8
|
2022-02-24 13:38:21 +01:00
|
|
|
out_used int
|
|
|
|
}
|
|
|
|
|
|
|
|
// new_ofb returns a Ofb that encrypts or decrypts using the block cipher b
|
|
|
|
// in output feedback mode. The initialization vector iv's length must be equal
|
|
|
|
// to b's block size.
|
2022-04-15 14:35:35 +02:00
|
|
|
pub fn new_ofb(b Block, iv []u8) Ofb {
|
2022-02-24 13:38:21 +01:00
|
|
|
block_size := b.block_size
|
|
|
|
if iv.len != block_size {
|
|
|
|
panic('cipher.new_ofb: IV length must be equal block size')
|
|
|
|
}
|
2022-03-09 19:26:00 +01:00
|
|
|
mut x := Ofb{
|
2022-02-24 13:38:21 +01:00
|
|
|
b: b
|
2022-04-15 14:35:35 +02:00
|
|
|
out: []u8{len: b.block_size}
|
|
|
|
next: []u8{len: b.block_size}
|
2022-02-24 13:38:21 +01:00
|
|
|
out_used: block_size
|
|
|
|
}
|
2022-03-09 19:26:00 +01:00
|
|
|
copy(mut x.next, iv)
|
2022-02-24 13:38:21 +01:00
|
|
|
return x
|
|
|
|
}
|
|
|
|
|
2022-04-15 14:35:35 +02:00
|
|
|
pub fn (mut x Ofb) xor_key_stream(mut dst_ []u8, src_ []u8) {
|
2022-02-24 13:38:21 +01:00
|
|
|
unsafe {
|
|
|
|
mut dst := *dst_
|
|
|
|
mut src := src_
|
|
|
|
if dst.len < src.len {
|
|
|
|
panic('crypto.cipher.xor_key_stream: output smaller than input')
|
|
|
|
}
|
|
|
|
|
|
|
|
if subtle.inexact_overlap(dst[..src.len], src) {
|
|
|
|
panic('crypto.cipher.xor_key_stream: invalid buffer overlap')
|
|
|
|
}
|
|
|
|
|
|
|
|
for src.len > 0 {
|
|
|
|
if x.out_used == x.out.len {
|
|
|
|
x.b.encrypt(mut x.out, x.next)
|
|
|
|
x.out_used = 0
|
|
|
|
}
|
|
|
|
|
2022-03-09 19:26:00 +01:00
|
|
|
copy(mut x.next, x.out)
|
2022-02-24 13:38:21 +01:00
|
|
|
|
|
|
|
n := xor_bytes(mut dst, src, x.out)
|
|
|
|
dst = dst[n..]
|
|
|
|
src = src[n..]
|
|
|
|
x.out_used += n
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|