mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
Fix a typo (s/multple/multiple/)
This commit is contained in:
parent
4b48fccadd
commit
91a1c20e74
3 changed files with 12 additions and 12 deletions
|
|
@ -123,7 +123,7 @@ pub const Block = struct {
|
|||
return out;
|
||||
}
|
||||
|
||||
/// Encrypt multple blocks in parallel with the same round key.
|
||||
/// Encrypt multiple blocks in parallel with the same round key.
|
||||
pub inline fn encryptWide(comptime count: usize, blocks: [count]Block, round_key: Block) [count]Block {
|
||||
comptime var i = 0;
|
||||
var out: [count]Block = undefined;
|
||||
|
|
@ -133,7 +133,7 @@ pub const Block = struct {
|
|||
return out;
|
||||
}
|
||||
|
||||
/// Decrypt multple blocks in parallel with the same round key.
|
||||
/// Decrypt multiple blocks in parallel with the same round key.
|
||||
pub inline fn decryptWide(comptime count: usize, blocks: [count]Block, round_key: Block) [count]Block {
|
||||
comptime var i = 0;
|
||||
var out: [count]Block = undefined;
|
||||
|
|
@ -143,7 +143,7 @@ pub const Block = struct {
|
|||
return out;
|
||||
}
|
||||
|
||||
/// Encrypt multple blocks in parallel with the same last round key.
|
||||
/// Encrypt multiple blocks in parallel with the same last round key.
|
||||
pub inline fn encryptLastWide(comptime count: usize, blocks: [count]Block, round_key: Block) [count]Block {
|
||||
comptime var i = 0;
|
||||
var out: [count]Block = undefined;
|
||||
|
|
@ -153,7 +153,7 @@ pub const Block = struct {
|
|||
return out;
|
||||
}
|
||||
|
||||
/// Decrypt multple blocks in parallel with the same last round key.
|
||||
/// Decrypt multiple blocks in parallel with the same last round key.
|
||||
pub inline fn decryptLastWide(comptime count: usize, blocks: [count]Block, round_key: Block) [count]Block {
|
||||
comptime var i = 0;
|
||||
var out: [count]Block = undefined;
|
||||
|
|
|
|||
|
|
@ -139,7 +139,7 @@ pub const Block = struct {
|
|||
return out;
|
||||
}
|
||||
|
||||
/// Encrypt multple blocks in parallel with the same round key.
|
||||
/// Encrypt multiple blocks in parallel with the same round key.
|
||||
pub inline fn encryptWide(comptime count: usize, blocks: [count]Block, round_key: Block) [count]Block {
|
||||
comptime var i = 0;
|
||||
var out: [count]Block = undefined;
|
||||
|
|
@ -149,7 +149,7 @@ pub const Block = struct {
|
|||
return out;
|
||||
}
|
||||
|
||||
/// Decrypt multple blocks in parallel with the same round key.
|
||||
/// Decrypt multiple blocks in parallel with the same round key.
|
||||
pub inline fn decryptWide(comptime count: usize, blocks: [count]Block, round_key: Block) [count]Block {
|
||||
comptime var i = 0;
|
||||
var out: [count]Block = undefined;
|
||||
|
|
@ -159,7 +159,7 @@ pub const Block = struct {
|
|||
return out;
|
||||
}
|
||||
|
||||
/// Encrypt multple blocks in parallel with the same last round key.
|
||||
/// Encrypt multiple blocks in parallel with the same last round key.
|
||||
pub inline fn encryptLastWide(comptime count: usize, blocks: [count]Block, round_key: Block) [count]Block {
|
||||
comptime var i = 0;
|
||||
var out: [count]Block = undefined;
|
||||
|
|
@ -169,7 +169,7 @@ pub const Block = struct {
|
|||
return out;
|
||||
}
|
||||
|
||||
/// Decrypt multple blocks in parallel with the same last round key.
|
||||
/// Decrypt multiple blocks in parallel with the same last round key.
|
||||
pub inline fn decryptLastWide(comptime count: usize, blocks: [count]Block, round_key: Block) [count]Block {
|
||||
comptime var i = 0;
|
||||
var out: [count]Block = undefined;
|
||||
|
|
|
|||
|
|
@ -180,7 +180,7 @@ pub const Block = struct {
|
|||
return out;
|
||||
}
|
||||
|
||||
/// Encrypt multple blocks in parallel with the same round key.
|
||||
/// Encrypt multiple blocks in parallel with the same round key.
|
||||
pub fn encryptWide(comptime count: usize, blocks: [count]Block, round_key: Block) [count]Block {
|
||||
var i = 0;
|
||||
var out: [count]Block = undefined;
|
||||
|
|
@ -190,7 +190,7 @@ pub const Block = struct {
|
|||
return out;
|
||||
}
|
||||
|
||||
/// Decrypt multple blocks in parallel with the same round key.
|
||||
/// Decrypt multiple blocks in parallel with the same round key.
|
||||
pub fn decryptWide(comptime count: usize, blocks: [count]Block, round_key: Block) [count]Block {
|
||||
var i = 0;
|
||||
var out: [count]Block = undefined;
|
||||
|
|
@ -200,7 +200,7 @@ pub const Block = struct {
|
|||
return out;
|
||||
}
|
||||
|
||||
/// Encrypt multple blocks in parallel with the same last round key.
|
||||
/// Encrypt multiple blocks in parallel with the same last round key.
|
||||
pub fn encryptLastWide(comptime count: usize, blocks: [count]Block, round_key: Block) [count]Block {
|
||||
var i = 0;
|
||||
var out: [count]Block = undefined;
|
||||
|
|
@ -210,7 +210,7 @@ pub const Block = struct {
|
|||
return out;
|
||||
}
|
||||
|
||||
/// Decrypt multple blocks in parallel with the same last round key.
|
||||
/// Decrypt multiple blocks in parallel with the same last round key.
|
||||
pub fn decryptLastWide(comptime count: usize, blocks: [count]Block, round_key: Block) [count]Block {
|
||||
var i = 0;
|
||||
var out: [count]Block = undefined;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue