<?xml version="1.0" encoding="ISO-8859-1"?>
<slide fontsize="6em">
	<title>Modes</title>

	<break lines="3"/>
	<blurb fontsize="5em">Different encryption modes:</blurb>
	<list marginleft="-2em" fontsize="3.5em" marginright="2em">
		<bullet>ECB (Electronic CodeBook): each block encrypted independently</bullet>
		<bullet>CBC (Cipher Block Chaining): text block is xor'ed with previous encrypted block</bullet>
		<bullet>CFB (Cipher FeedBack): text is xor'ed with the encrypted output of the IV; cipher output is new IV for next block</bullet>
		<bullet>OFB (Output FeedBack): text is xor'ed with the encrypted output of the IV; encrypted output is new IV for next block</bullet>
	</list>
</slide>
