From 536239a1df556ef25164516af9c66ad6eca3f452 Mon Sep 17 00:00:00 2001 From: Alex Grin Date: Mon, 30 Aug 2021 12:51:47 -0400 Subject: [PATCH] fix typo fixes #28 --- index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.md b/index.md index dd2b157..b6f3f64 100644 --- a/index.md +++ b/index.md @@ -762,7 +762,7 @@ A file must be encoded into a stream before it can be published. Encoding involv ##### Content Blobs 1. Break the file into chunks of at most 2097151 bytes. -1. Generate a random 32-byte initialization vector (IV) for each chuck. +1. Generate a random 32-byte initialization vector (IV) for each chunk. 1. Pad each chunk using PKCS7 padding. 1. Encrypt each chunk with AES-CBC using the stream key and the IV for that chunk. 1. An encrypted chunk is a blob.