On the Security of CTR + CBC-MAC
|
|
|
- Maryann Grant
- 10 years ago
- Views:
Transcription
1 On the Security of CTR + CBC-MAC NIST Modes of Operation Additional CCM Documentation Jakob Jonsson * jakob [email protected] Abstract. We analyze the security of the CTR + CBC-MAC (CCM) encryption mode. This mode, proposed by Doug Whiting, Russ Housley, and Niels Ferguson, combines the CTR ( counter ) encryption mode with CBC-MAC message authentication and is based on a block cipher such as AES. We present concrete lower bounds for the security of CCM in terms of the security of the underlying block cipher. The conclusion is that CCM provides a level of privacy and authenticity that is in line with other proposed modes such as OCB. Keywords: AES, authenticated encryption, modes of operation. Note: A slightly different version of this paper will appear in the Proceedings from Selected Areas of Cryptography (SAC) Introduction Background. Block ciphers are popular building blocks in cryptographic algorithms intended to provide information services such as privacy and authenticity. Such block-cipher based algorithms are referred to as modes of operation. Examples of encryption modes of operation are Cipher Block Chaining Mode (CBC) [23], Electronic Codebook Mode (ECB) [23], and Counter Mode (CTR) [9]. Since each of these modes provides privacy only and not authenticity, most applications require that the mode be combined with an authentication mechanism, typically a MAC algorithm [21] based on a hash function such as SHA-1 [24]. For example, a popular cipher suite in SSL/TLS [8] combines CBC mode based on Triple-DES [22] with the MAC algorithm HMAC [26] based on SHA-1. As it turns out, there are secure and insecure ways of combining a secure encryption mode with a secure MAC algorithm; certain constructions are easily broken due to bad interactions between the components (see [4, 19] for discussion). While there are generic constructions with a provable security in terms of the underlying components (e.g., schemes based on the first-encrypt-thenauthenticate paradigm as described in [19]), implementers tend to pick other combinations for reasons that are beyond the scope of this paper. Some of these combinations have turned out to be secure for the specific components chosen, while other combinations have been broken (see again [19]). * This work was completed at RSA Laboratories Europe in Stockholm.
2 An interesting line of research the last couple of years has been the development of block cipher modes of operation that simultaneously provide privacy and authenticity. We will refer to such modes of operation as combined modes (a less ambiguous and frequently used term is authenticated-encryption modes). Ideally, such a mode should be provably secure, roughly meaning that there exists a mathematical proof that the scheme cannot be broken unless a weakness can be found in the underlying block cipher. Our goal. In this paper we provide a formal analysis of a combined mode denoted CCM, which is shorthand for CTR + CBC-MAC. As the full name indicates, CCM combines the CTR encryption mode with the CBC-MAC [14] authentication mode; it does so using one single block cipher encryption key. CCM is proposed for IEEE [30] and NIST Modes of Operation [31]. Some attractive properties of CCM mode are as follows. 1. CCM readily handles messages in which certain parts are intended to be authenticated only and not encrypted, and this is done without any additional ciphertext overhead. For many other combined modes, certain enhancements are needed to address this. 2. The underlying block cipher is used only in the forward encryption direction and not in the reverse decryption direction; this is true both for CCM encryption and CCM decryption. This feature makes CCM an attractive candidate for applications where a small code size is desirable. Also, this makes it possible to define CCM in terms of an arbitrary pseudo-random function that is not necessarily reversible. In this respect, the CCM mode is more versatile than other proposed modes (see below). 3. CCM is based on well-known technology; CTR and CBC-MAC were introduced long ago. The two modes being widely scrutinized and documented may help avoid potential implementation loopholes. Also, highly optimized and well-trusted implementations of CBC have been around for years. 4. According to [30], all intellectual property rights to CCM have been released into the public domain. As is pointed out in [28], CCM being based on well-trusted components is not in itself an argument for the security of CCM: While the underlying modes CTR and CBC-MAC are known to be provably secure under certain assumptions (see [2] and [3, 27]), the two modes share the same block cipher encryption key within CCM. In particular, the results in [19] do not apply. Our object is to demonstrate that CCM is as secure as the two-key variant covered in [19]. Property 2 turns out to be of significant help in the security analysis; thanks to this property we can give a security proof for CCM in terms of a pseudorandom function that does not necessarily have a well-defined inverse. By standard arguments, the proof is then easily translated into a security proof for CCM in terms of a pseudo-random permutation (i.e., a block cipher) that does have an inverse. A direct proof in terms of a block cipher would most certainly be very tricky due to biases caused by the absence of output collisions in permutations.
3 Related work and further directions. A number of different combined modes have been proposed; these modes have in common that they add redundancy to the message to be encrypted. The approach, employed in proposals such as IAPM [17], OCB [29], IACBC [16], and IGE [11], is to concatenate the message with a non-cryptographic checksum before encrypting the message. In some cases the checksum is an xor sum of the blocks in the message, while in other cases a constant block will do. The encryption method is typically a refinement of a standard mode such as CBC (e.g., IACBC and IGE) or ECB (e.g., IAPM and OCB). See [1] for a general treatment of the encrypt-with-redundancy paradigm. The purpose of concatenating a checksum to the message is to make it hard for an adversary to modify a ciphertext in a manner consistent with the underlying message. The above mentioned modes of operation are all equipped with security proofs assuring that this is indeed hard. CCM employs the same paradigm but uses a cryptographic tag rather than a checksum. This makes CCM less efficient than the other variants, but instead CCM achieves benefits such as properties 1 and 2 listed above. While we have defined a combined mode in terms of a block cipher, another possibility would be to use a hash function such as SHA-1 as the underlying primitive. It has been demonstrated [12] that certain standard hash functions (e.g., SHA-1) are easily turned into block ciphers with attractive properties. Also, any hash function can be used as a building block in a stream cipher; consider the MGF construction in [13] based on ideas from [5]. We will not pursue this discussion further in this context and confine ourselves with acknowledging the problem as an interesting area of research. Notation For each integer k > 0, {0, 1} k denotes the set of bit strings of length k. The length of a bit string X is denoted X. For integers j 0 and k > 0 (j < 2 k ), (j) k is the k-bit representation of j (e.g., (13) 6 = ). For a bit string X of bit length k, we will sometimes write (X) k instead of X to indicate explicitly that the bit length of X is k. For any set S, define S as the union k 0 S k ; S is the set of all finite sequences (including the empty sequence) of elements from S. The concatenation of two bit strings X and Y is denoted X. Y. 2 Scheme Description CTR + CBC-MAC [30] (from now on denoted CCM) is a combined mode providing privacy and authenticity. We stress that CCM as defined in this section is a generalization of the proposal [30]; the special case defined in [30] is described in Section 2.3. CCM is based on a pseudo-random function E : {0, 1} k0 {0, 1} k b {0, 1} k b ;
4 E takes as input a key of bit length k 0 and a block to be encrypted of bit length k b and outputs an encrypted block of the same bit length k b. We will write E K (X) = E(K, X). We anticipate that most practical applications of CCM will be based on a traditional block cipher E, which means that E K is a permutation (thus invertible) for each K. For example, in the proposal [30] the underlying function is AES [7, 25]. However, as we have already pointed out, E K does not have to be a permutation; the function is used only in the forward encryption direction and never in the reverse decryption direction. 2.1 Overview of CCM Before the CCM encryption scheme can be used, the parties that are going to exchange secret information must agree on a secret key K. A detailed description of possible key exchange methods is beyond the scope of this paper, but it is assumed that the key is selected uniformly (or close to uniformly) at random from the set {0, 1} k0 of all possible keys. The CCM encryption operation takes as input a nonce N of fixed bit length k n < k b, a header H, and a message M. The header H is only authenticated and not encrypted, whereas the message M is both authenticated and encrypted; an authentication tag is derived from (N, H, M) via CBC-MAC and encrypted together with M in CTR mode. The tag is of fixed length k t k b. The encryption operation outputs a ciphertext C of bit length M + k t. The nonce N is non-repeating ( fresh ) in the sense that it must not have been used as a nonce in a previous application of the CCM encryption operation during the lifetime of a key. Typically, there are certain restrictions on the inputs to the CCM encryption operation. For example, the lengths of the header and the message might be upper-bounded by some constant. Also, some applications may require that the bit length of the header and the message be a multiple of 8 or the block length. An input (N, H, M) satisfying all requirements is valid; the set of all valid inputs is a subset V of the set of all possible triples (N, H, M) of bit strings. CBC-MAC computation. In the first step of the encryption operation, we compute a CBC-MAC tag of a string derived from the input. Since CBC-MAC acts on blocks of bit length k b, it cannot be applied directly to the CCM input (which is a triple of bit strings with lengths not necessarily multiples of k b ). For this reason we need to introduce an encoding function β : V W, where W = {0, 1} k b (W is the set of blocks); the output from β is a string of blocks. On a valid input (N, H, M) V, the encoding function β derives a string B = B 0. B 1.. B r
5 of CBC-MAC blocks B 0,..., B r. A tag T is derived by applying CBC-MAC to these blocks; see the algorithm description in Section 2.2 for details. The first 1 block B 0 is the CBC-MAC pre-iv. We require that the following hold for the encoding function β. 1. N is uniquely determined by the first block B 0 of β(n, H, M). 2. For any two valid and distinct inputs (N, H, M) and (N ', H ', M ' ) with B = β(n, H, M) and B ' = β(n ', H ', M ' ) ( B B ' ), the string consisting of the first B bits of B ' does not coincide with B; the function β is prefix-free. While maybe not absolutely necessary for security (compare to [3, 27, 15]), the first condition is a convenient way of making the security analysis more streamlined; each new application of the CCM encryption operation will employ a fresh CBC-MAC pre-iv B 0. The second condition is not arbitrarily chosen; Petrank and Rackoff [27] have observed that CBC-MAC has attractive security properties when applied to a prefix-free message space. Note that this condition implies that (N, H, M) is uniquely determined by β(n, H, M). CTR encryption. In the second step of the encryption operation, we encrypt the message M and the CBC-MAC tag T in CTR mode. We use a CTR block generator π with four arguments (i, N, H, M ) such that the nonce N and the counter i (but not necessarily the header H and the message length M ) are uniquely determined by the CTR block π(i, N, H, M ). Here, N {0, 1} kn and 0 i µ max, where µ max is a scheme-specific parameter bounding the maximal number of blocks in a message (note that (µ max + 1) 2 kn 2 k b ). This gives the theoretical upper bound µ max 2 kn on the total number of message blocks that can be encrypted during the lifetime of a key. There might be scheme-specific restrictions on the nonce that make the actual upper bound considerably smaller than the theoretical upper bound. On input (N, H, M), the CTR input blocks A 0, A 1, A 2,... are defined as A i = π(i, N, H, M ). The k t leftmost bits of E K (A 0 ) are used for encryption of the CBC-MAC tag T, while the M leftmost bits of the string E K (A 1 ). E K (A 2 ). E K (A 3 ). are used for encryption of the message M. Let β 0 (N, H, M) be equal to the first block B 0 of β(n, H, M). We require that π(i, N, H, M ) = β 0 (N ', H ', M ' ) for all valid (N, H, M), (N ', H ', M ' ) and 0 i µ max. This is achieved if, e.g., the leftmost bit of the output from π is always 0, whereas the leftmost bit of the output from β 0 is always 1. The nonce being non-repeating implies that all CTR input blocks A i and all CBC-MAC pre-ivs B 0 used during the lifetime of a key are distinct. 1 We may view T as the CBC-MAC tag of B 1.. B r with IV E K (B 0).
6 2.2 CCM Specification CCM encryption can be summarized as follows. First, the CBC-MAC tag T of β(n, H, M) is computed. Second, the message M is encrypted in CTR mode with CTR blocks generated from the nonce N via π. Finally, the tag T is encrypted with a single CTR block. Formally, CCM encryption is defined as follows. CCM-Encrypt(N, H, M) 1. CBC-MAC computation: Let B 0. B 1.. B r = β(n, H, M). Let Y 0 = E K (B 0 ). For 1 i r, let Y i = E K (Y i 1 B i ). Let T be equal to the k t leftmost bits of Y r. 2. CTR encryption: Let µ = i M /k b l. For 0 i µ, let A i = π(i, N, H, M ). For 0 i µ, let S i = E K (A i ). Let S be equal to the M leftmost bits of S 1. S 2.. S µ and let S ' be equal to the T leftmost bits of S 0. Let C = [M S]. [T S ' ]. 3. Output C. CCM decryption of a ciphertext C with the nonce N and the header H is defined in the obvious manner: First, apply the reverse of step 2 to C to obtain a message M and a CBC-MAC tag T (the CTR block generator π is applied to (i, N, H, C k t )). Next, apply CBC-MAC to β(n, H, M) as in step 1 to obtain ' a CBC-MAC tag T equal to the k t leftmost bits of Y r. If T = T ', then C is valid and M is output. Otherwise, C is not valid and an error is output. Note that the decryption operation must not release the message or any part of it until the tag has been verified. This is to prevent a chosen-ciphertext adversary from deriving useful information from invalid decryption queries. 2.3 Example In the proposals [30] to IEEE and [31] to NIST, CCM is based on AES with block length k b = 128 and key length k 0 equal to 128, 192, or 256. All strings are assumed to be of length a multiple of 8. Before CCM can be used, we need to fix k t, k n, and µ max. In the IEEE proposal, the tag length k t is a multiple of 16 between 32 and 128, while the nonce length k n is a multiple of 8 between 56 and 112. For formatting reasons, the number of octets in a message must not exceed kn 1; put k max = 120 k n. Note that µ max = 2 kmax 4 ; each block contains 2 4 octets. An input (N, H, M ) is valid if and only if N {0, 1} kn, 0 H /8 < 2 16, and 0 M /8 < 2 kmax. 2 2 For simplicity, we assume that the octet length of the header H is small enough to fit within two octets; the proposal can handle larger values as well.
7 The encoding function β is defined as follows on input (N, H, M ). The first block B 0 is equal to (0b) 2. (k t /16 1) 3. (k max /8 1) 3. (N) kn. ( M /8) kmax. The bit b is equal to 0 if H is the empty string and 1 otherwise. If b = 1, then the two leftmost octets of B 1 are equal to ( H /8) 16. Let L H be ( H /8) 16 if H > 0 and the empty string otherwise. Then β(n, H, M) = B 0. L H. H. Z 1. M. Z 2. Here, Z 1 and Z 2 are short (possibly empty) strings of zeros such that L H. H. Z 1 and M. Z 2 are multiples of the block length 128. Note that N is uniquely determined by B 0 and that β is prefix-free; no proper prefix of β(n, H, M) is a valid output from β, and the input (N, H, M) is uniquely determined by β(n, H, M). Namely, the inclusion of the exact octet length of H and M in β(n, H, M) makes it possible to extract H and M from H. Z 1. M. Z 2 in an unambiguous manner. The CTR block generator π depends only on the nonce and the counter and is defined as π(i, N ) = (00000) 5. (k max /8 1) 3. (N) kn. (i) kmax. This cannot be equal to a CBC-MAC pre-iv B 0 ; the first five bits in B 0 are not all zeros since k t /16 1 is nonzero. 3 Security Analysis of CCM In this section we analyze the security of CCM. There are two aspects of security in our setting: Privacy: It should be infeasible for an adversary to derive any information from the ciphertexts without access to the secret key. Authenticity: It should be infeasible for an adversary to forge a valid ciphertext without access to the secret key. In Section 3.1 we argue heuristically for the security of CCM. Formal definitions are provided in Section 3.2, while the main theorems are given in Section Heuristic Security Argument Before analyzing CCM in greater detail, we provide a rough outline of the security properties of CCM; see next section for a detailed description of the attack models. Note that the discussion in this section is only heuristic and leaves out quite a few technical details that must not be ignored in a formal analysis. Throughout this section, we assume that the underlying permutation E k is chosen uniformly at random from the set of all permutations.
8 First, consider privacy. In our setting, the goal for the adversary is to distinguish the ciphertexts from random gibberish (a bit string chosen uniformly at random from the set of all possible bit strings of a specified length). Let (N, H, M) be an input to the encryption operation. This operation first computes a tag T and then encrypts the message M and the tag in CTR mode. Since N is required to be fresh, the CTR input blocks and the CBC-MAC pre-ivs are new. In particular, the output ciphertext will be very close to random gibberish even if the adversary knows the plaintext. As we will see in the formal analysis, there are only two ways for the adversary to be successful. First, the adversary may mount a birthday attack against the CTR output blocks. Namely, since E k is a block cipher and since all input blocks are distinct, there are no collisions among the CTR output blocks. However, with probability approximately O(q 2 ) 2 b (q is the number of applications of the underlying block cipher), true random gibberish will contain such block collisions. Second, the adversary may hope for an anomaly to occur within the CBC-MAC computations (e.g., an internal collision or a CBC-MAC tag that coincides with some CTR output block). In our formal analysis, we will demonstrate that the probability of any such anomaly is bounded by O(q 2 ) 2 b. Next, consider authenticity. We have already concluded that it is hard to distinguish the ciphertexts from random gibberish. In addition, it turns out that it is hard to tell anything nontrivial about the internal CBC-MAC input and output blocks even if all plaintexts are known. We will prove later that the probability that the adversary is able to extract any useful information about the internal blocks is bounded by O(q 2 ) 2 b. Unless q is very large, the adversary knows close to nothing about the internal blocks, which implies that it is close to impossible to modify any previous encryption query without having the encrypted tag modified in an unpredictable manner. Namely, since β is prefix-free, any forgery attempt must have the property that the corresponding sequence B = B 0. B 1. of CBC-MAC blocks is unique. Specifically, if there is a previous encryption query with the same initial blocks as the present forgery attempt, it is still the case that there is some position on which the CBC-MAC blocks differ. The conclusion is that it is hard to guess the tag with probability better than 2 kt ; whatever modification the adversary tries to make, she cannot predict the consequences. 3.2 Security Concepts Our definitions are based on work in [2, 4, 6, 18] and are analogous to those in [29]. CCM is a member of the family of nonce-using symmetric encryption schemes. Such a scheme is defined by a 4-tuple (K, E, D, k n ). Here, k n is an integer (the nonce length) and K is the key space. In our setting, E and D are functions (φ = Error ) such that K {0, 1} kn {0, 1} {0, 1} {0, 1} {φ} M if C = E(K, N, H, M) for some (unique) M; D(K, N, H, C) = φ if C = E(K, N, H, M) for all M.
9 We will write E K (N, H, M) = E(K, N, H, M) and similarly for D. We assume that the bit length of E K (N, H, M) is uniquely determined by the bit lengths of H and M (the bit length of N is fixed to k n ). We want to define privacy and authenticity of a nonce-using symmetric encryption scheme Π = (K, E, D, k n ). For this purpose, we need to define two attack experiments. In each of the two experiments, a key K is first chosen uniformly at random from K. We proceed as follows in a manner similar to the approach in [29], except that we allow the adversary against authenticity to make several forgery attempts. Privacy. In the privacy experiment, the adversary A has access to an encryption oracle O that on input (N, H, M) returns a ciphertext C. A may send arbitrary queries to the oracle, except that the same nonce must not be used in more than one query; such a query is immediately rejected by the oracle. Thus we restrict our attention to nonce-respecting adversaries. The encryption oracle is chosen from a set of two possible oracles via a fair coin flip b {0, 1}. If b = 1, then the oracle is the true oracle E K. If b = 0, then the oracle is a random oracle R that on input (N, H, M) returns a string of length E K (N, H, M) chosen uniformly at random. By assumption, E K (N, H, M) depends only on H and M. The goal for A is to guess the bit b; a correct guess would mean that she is able to distinguish E K from a true random number generator. We define the advantage of A against the privacy of Π as Adv priv Π (A) = (1 A E K Pr ) Pr(1 A R ) ; K K 1 A O denotes the event that A outputs 1 conditioned that the underlying oracle is O. D Authenticity. In the authenticity experiment, A has access to the true encryption oracle E K and to the true decryption oracle D K. Queries to the decryption oracle will be referred to as forgery attempts. As in the privacy experiment, we assume that the adversary is nonce-respecting when making encryption queries. However, there are no such restrictions on forgery attempts. The goal for A is to produce a forgery attempt (N, H, C ) such that D K (N, H, C ) = φ; if this is true, then A forges. The only restriction on (N, H, C ) is that there must not be any previous encryption query (N, H, M) with response C. However, N may well be part of a previous encryption query and one or several previous forgery attempts. A may send her encryption queries and forgery attempts in any order and at any time during the experiment. We define the advantage of A against the authenticity of Π as Adv auth Π (A) = Pr K K (A E K forges). D The reason for accepting several forgery attempts (as opposed to one single
10 forgery attempt at the end of the experiment) is that we want to analyze how the number of forgery attempts affects the success probability of an adversary. Specifically, we want to show that the adversary does not gain more than negligibly from making multiple forgery attempts if the tag length is considerably larger than k b /2. Our goal is to relate the security of CCM to the hardness of distinguishing the underlying function E K from a random function (and, if E is a block cipher, from a random permutation). Let Rand(k b ) be the set of all functions f : {0, 1} k b {0, 1} k b and let Perm(k b ) be the subset of Rand(k b ) consisting of all permutations. First consider indistinguishability from a random function. PRF indistinguishability. The attack experiment for E K is very similar to the privacy experiment for Π above. In the first step of the experiment a key K is chosen uniformly at random from K and an oracle O is chosen via a fair coin flip b. If b = 0, then O is a function ρ selected uniformly at random from Rand(k b ). If b = 1, then O is E K. The adversary B is given access to the oracle O and is allowed to send arbitrary queries. The goal for the adversary is to guess the bit b. We define Adv prf E (B) = Pr (1 BE K ) Pr (1 B ρ ). D K K ρ Rand(k b ) PRP indistinguishability. We now consider indistinguishability from a random permutation. The only modification from the previous experiment is that ρ is selected from Perm(k b ) instead of Rand(k b ); we define Adv prp (B) = Pr (1 B E K ) Pr (1 B ρ ). D E K K ρ Perm(k b ) Before we proceed, we state a useful result regarding the correspondence between PRF and PRP indistinguishability; see [3] for a proof. Lemma 1. Let E be a block cipher; E K is a permutation for each key K K. Then for any PRF distinguisher B making q queries to his oracle, there is a PRP distinguisher Bˆ making q queries to his oracle such that Adv prf (B) Adv prp (Bˆ) + q(q 1) 2 k b 1 E E. The running time for Bˆ is the running time for B plus the time needed to transport q queries and q responses between B and Bˆ s oracle. D 3.3 Security Results We now present lower bounds for the security of CCM in terms of the underlying function E K. First consider authenticity. For an encryption query Q = (N, H, M), define β(n, H, M) + M l Q = + 1 ; k b
11 l Q is the total number of applications of the block cipher needed to respond to the query Q. For a forgery attempt Q = (N, H, C ) corresponding to the message M, define β(n, H, M ) + C l Q = + 1 ; k b l Q is the total number of applications of the block cipher needed to decrypt C and check whether C is valid. Theorem 1. Let A be an adversary against the authenticity of CCM. Let q E be the number of encryption queries and let Q 1, Q 2,..., Q qe denote the queries. Let q F be the number of forgery attempts and let Q 1, Q 2,..., Q q F denote the attempts. Put l E = l Qi and l F = l Q. i Then there is a PRF distinguisher B such that i Adv auth (A) Adv prf (B) + q 2 kt 2 k b 1 F + (l E + l F ) 2. CCM E Thus, by Lemma 1, if E is a block cipher, then there is a PRP distinguisher Bˆ such that Adv auth (A) Adv prp (Bˆ) + q F 2 kt + (l E + l F ) 2 2 k b. CCM E Both distinguishers have an additional running time equal to the time needed to process the queries from A. This includes making l E + l F oracle queries and xoring l E q E + l F q F pairs of blocks of size k b. The proof of Theorem 1 is given in Appendix A. Now consider privacy. Theorem 2. Let A be an adversary against the privacy of CCM. Let q E and l E be defined as in Theorem 1. Then there is a PRF distinguisher B such that Adv priv CCM E E (A) Adv prf (B) + l 2 2 k b 1. Thus, by Lemma 1, if E is a block cipher, then there is a PRP distinguisher Bˆ such that Adv priv (A) Adv prp 2 k b (Bˆ) + l 2 CCM E E. Both distinguishers have an additional running time equal to the time needed to process the queries from A. This includes making l E oracle queries and xoring l E q E pairs of blocks of size k b. The proof of Theorem 2 is given in Appendix B. i
12 3.4 Possible Extensions Beyond the Birthday Paradox The security bounds in the previous section include a term of the form c l 2 2 k b, where c is a small constant, l is the number of applications of the underlying block cipher, and k b is the block size. This term is closely related to the birthday paradox, which states that a collision X i = X j is likely to be found among l uniformly random bit strings X 1,..., X l of length k b if l is approximately 2 k b /2. In some situations, it would be desirable to have assurance that CCM remains secure beyond the birthday paradox bound. While this cannot be true for the confidentiality of CCM, we still hope to find an authenticity bound that is linear rather than quadratic in the number of applications of the block cipher. As a comparison, consider the recent paper [15], which elaborates on a variant of CBC-MAC called RMAC. The RMAC construction is a message authentication code based on CBC-MAC that is provably secure against birthday paradox attacks. RMAC is similar to CCM in that both schemes encrypt the CBC-MAC tag. While the encryption method in RMAC is substantially stronger than that in CCM, we still conjecture that the CTR encryption of the CBC-MAC tag is strong enough to thwart birthday attacks. We summarize the problem to be solved as follows. Problem 1 Let notations be as in Theorem 1 with A being an adversary against the authenticity of CCM, and assume that E is a block cipher. Is there a PRP distinguisher Bˆ with approximately the same running time as A such that 1+o(1) (A) Adv prp (Bˆ) + q 2 kt + (l E + l F ) 1+o(1) 2 k b? Adv auth CCM E F Ferguson [10] has demonstrated that the corresponding conjecture for OCB mode [29] is false; there is an attack against the authenticity of OCB demonstrating that the established lower bound for OCB is also an upper bound. In this context, it is worth mentioning TAE, an interesting variant of OCB with excellent security bounds based on a tweakable block cipher; see [20] for details. It remains to be examined whether there exists a variant of CCM based on a tweakable block cipher with just as good security bounds. Acknowledgments I thank Burt Kaliski, Tadayoshi Kohno, and the CCM designers Niels Ferguson, Russ Housley, and Doug Whiting for valuable comments and fruitful discussions. References 1. J. H. An and M. Bellare. Does Encryption with Redundancy Provide Authenticity? Advances in Cryptology EUROCRYPT 2001, pp , Springer Verlag, M. Bellare, A. Desai, E. Jokipii, and P. Rogaway. A Concrete Security Treatment of Symmetric Encryption: Analysis of the DES Modes of Operation. Proceedings of 38th Annual Symposium on Foundations of Computer Science (FOCS 97), IEEE, 1997.
13 3. M. Bellare, J. Kilian, P. Rogaway. The Security of the Cipher Block Chaining Message Authentication Code. Journal of Computer and System Sciences, 61 (3), , M. Bellare and C. Namprempre. Authenticated Encryption: Relations Among Notions and Analysis of the Generic Composition Paradigm. Advances in Cryptology ASIACRYPT 2000, pp , Springer-Verlag, M. Bellare and P. Rogaway. Optimal Asymmetric Encryption How to Encrypt with RSA. Advances in Cryptology Eurocrypt 94, pp , Springer Verlag, M. Bellare and P. Rogaway. Encode-Then-Encipher Encryption: How to Exploit Nonces or Redundancy in Plaintexts for Efficient Encryption. Advances in Cryptology ASIACRYPT 2000, pp , Springer-Verlag, J. Daemen and V. Rijmen. AES Proposal: Rijndael. Contribution to NIST, September Available from csrc.nist.gov/encryption/aes/rijndael/. 8. T. Dierks and C. Allen. IETF RFC 2246: The TLS Protocol Version 1.0. January W. Diffie and M. Hellman. Privacy and Authentication: An Introduction to Cryptography. Proceedings of the IEEE, 67, pp , N. Ferguson. Collision Attacks on OCB. Preprint, February V. Gligor, P. Donescu. Infinite Garble Extension. Contribution to NIST, Available from csrc.nist.gov/encryption/modes/proposedmodes/. 12. H. Handschuh and D. Naccache. SHACAL. Contribution to the NESSIE project, IEEE Std Standard Specifications for Public Key Cryptography. IEEE, ISO/IEC 9797: Information Technology Security Techniques Data Integrity Mechanism Using a Cryptographic Check Function Employing a Block Cipher Algorithm. Second edition, E. Jaulmes, A Joux and F. Valette. On the Security of Randomized CBC-MAC Beyond the Birthday Paradox Limit A New Construction. Fast Software Encryption, 9th International Workshop, FSE 2002, to appear. 16. C. S. Jutla. Encryption Modes with Almost Free Message Integrity. Contribution to NIST, Available from csrc.nist.gov/encryption/modes/proposedmodes/. 17. C. S. Jutla. Parallelizable Encryption Mode with Almost Free Message Integrity. Contribution to NIST, Available from csrc.nist.gov/encryption/modes/proposedmodes/. 18. J. Katz and M. Yung. Unforgeable Encryption and Chosen-Ciphertext-Secure Modes of Operation. Fast Software Encryption 2000, pp , H. Krawczyk. The Order of Encryption and Authentication for Protecting Communications (or: How Secure Is SSL?). Advances in Cryptology CRYPTO 2001, pp , Springer Verlag, M. Liskov and R. L. Rivest. Tweakable Block Ciphers. Submitted. Available from theory.lcs.mit.edu/ rivest/publications.html. 21. A. Menezes, P. van Oorschot and S. Vanstone. Handbook of Applied Cryptography. CRC Press, National Institute of Standards and Technology (NIST). FIPS Publication 46-3: Data Encryption Standard (DES). October National Institute of Standards and Technology (NIST). FIPS Publication 81: DES Modes of Operation. December National Institute of Standards and Technology (NIST). FIPS Publication 180-1: Secure Hash Standard (SHS). April 1995.
14 25. National Institute of Standards and Technology (NIST). FIPS Publication 197: Advanced Encryption Standard (AES). November National Institute of Standards and Technology (NIST). FIPS Publication 198: HMAC - Keyed-Hash Message Authentication Code. March E. Petrank, C. Rackoff. CBC MAC for Real-Time Data Sources. Journal of Cryptology, 13 (3), pp , P. Rogaway. IEEE /156r0: Some Comments on WHF Mode. March Available from rogaway/ocb/ocb-doc.htm. 29. P. Rogaway, M. Bellare, J. Black and T. Krovetz. OCB: A Block-Cipher Mode of Operation for Efficient Authenticated Encryption. 8th ACM Conference on Computer and Communications Security (CCS-8), pp ACM Press, D. Whiting, R. Housley and N. Ferguson. IEEE /001r2: AES Encryption & Authentication Using CTR Mode & CBC-MAC. March D. Whiting, R. Housley and N. Ferguson. Counter with CBC-MAC (CCM), AES Mode of Operation. Contribution to NIST, May Available from A Proof of Theorem 1 We want to relate an adversary A against the authenticity of CCM to a PRF distinguisher B attacking the underlying function E K. B is given access to an oracle O equal to either E K or a random function ρ, each with probability 1/2. B is able to respond to encryption queries from A if O = E K. In this case B provides a perfect simulation of E K ; the responses are exactly the same as those provided by the true encryption oracle E K. However, if O = ρ, then the simulation is no longer perfect. Still, the experiment can be run; A may or may not be able forge at the end. Let B output 1 if A forges (with respect to an oracle based on O) and 0 otherwise. Note that Adv auth CCM(A) = Pr (1 B E K ) Adv prf (B) + Pr (1 B ρ E ) K K ρ Rand(k b ) = Adv prf (B) + Pr (A ρ forges) ; E ρ Rand(k b ) A ρ denotes A with a CCM encryption oracle based on ρ. Thus we need to give a bound for the probability that an adversary A forges conditioned that the underlying function is selected uniformly at random from Rand(k b ). To achieve such a bound, we need to demonstrate how to simulate A s encryption oracle. This is achieved if we are able to simulate the underlying random function ρ. We will also need to simulate the decryption oracle to check whether the forgery attempts by the adversary are valid or not. However, for the moment we restrict our attention to the encryption oracle simulation. A true simulation of the function ρ would be as follows. The algorithm RF- Simulation (RF = Random Function) takes as input the block X to be processed and a list L containing all pairs (X ', Y ' ) corresponding to previous applications of ρ; Y ' = ρ(x ' ). RF-Simulation(X, L)
15 1. If X is the first block in some entry on the list L, then Y = ρ(x) is already defined; output Y and exit. 2. Generate a string Y uniformly at random. 3. Add (X, Y ) to the list L and output Y. To simplify analysis, we introduce a modified simulation by skipping step 1 and the list L; RO-Simulation (RO = Random Output) is defined as follows, in the easiest possible manner. RO-Simulation(X) 1. Generate a string Y uniformly at random. 2. Output Y. This simulation fails if and only if some block appears twice as input to RO- Simulation and the two corresponding outputs are distinct (this makes the definition of ρ inconsistent). Let RO-InColl be the even that some input X appears twice; Pr(RO-InColl) is at least the probability of a simulation failure. Before we can estimate the probability of RO-InColl, we need to examine the structure of the input blocks to RO-Simulation. This is done as follows. Let X be the multi-set of all input blocks to ρ needed when responding to encryption queries. X being a multi-set means that if some input block appears several times during the simulation, then this block appears just as many times in X. We claim that the following holds for RO-Simulation. Claim. The set X of input blocks can be divided into two sets X 1 and X 2. X 1 is the set of input blocks derived from the nonces (i.e., the CTR blocks and the CBC-MAC pre-iv), while X 2 is the set of input blocks occurring in the internal CBC-MAC computations. All blocks in the first set X 1 are distinct and known to the adversary. All blocks in the second set X 2 are, from the view of the adversary, mutually independent and uniformly distributed among all possible blocks. Also, the sets X 1 and X 2 are independent. In particular, the ciphertexts given to the adversary leak no information about the blocks in the set X 2. Proof of Claim. We use induction over the number of encryption queries to prove that the claim holds. Thus assume that after a certain number q 0 of ' queries, the set X containing the corresponding input blocks can be divided ' ' into two sets X 1 and X 2 as above. Consider a new encryption query (N, H, M) with blocks A 0,..., A µ, B 0 derived from N. Since N is a new nonce never used ' before, the set X 1 does not contain any of the blocks A 0,..., A µ, B 0. Also, N ' is independent from all elements in X 2 since these are completely unknown to the adversary and since N is generated in a predetermined fashion. Thus adding ' A 0,..., A µ, B 0 to X 1 does not violate the desired properties. Now, consider the CBC-MAC computation of γ(n, H, M) = B 0. B 1.. B r.
16 By construction, the first output block Y 0 in the CBC-MAC computation is a uniformly distributed string. Namely, RO-Simulation does not check for input collisions (with the true simulation, Y 0 would not necessarily be uniformly distributed). In particular, Y 0 is independent from B 1, which implies that Y 0 B 1 is independent from other input blocks and uniformly distributed. Similarly, Y i 1 is uniformly distributed for i > 1, which implies that Y i 1 B i is independent from other input blocks and uniformly distributed. Also, the CBC-MAC tag T (which is Y r truncated to k t bits) and the part of the CTR output stream to which T is xored are both uniformly distributed and do not leak any information about the internal blocks. Hence, all internal CBC-MAC input blocks can ' be added to X 2 without violating the desired properties. Using induction, we conclude that X has the desired property. D As a consequence, we may now compute the probability of the event RO-InColl. Let x 1 = X 1 and x 2 = X 2 (the sets are still viewed as multi-sets); x 1 +x 2 = l E. The probability that there is an input block that appears twice in the simulation is bounded by RO-InColl (x 1 x 2 + x 2 (x 2 1)/2) 2 k b l E (l E 1)/2 2 k b ; (1) This follows immediately from the facts that the elements in X 1 are all different and that the elements in X 2 are uniformly distributed, mutually independent, and independent from X 1. Thus, from the view of the adversary, every two elements in X coincide with probability either 0 (if both elements are in X 1 ) or 2 k b (otherwise). Note that total secrecy of the elements in X 2 is essential for the proof; otherwise the adversary might be able to increase the failure probability for the simulation by selecting new encryption queries on the basis of leaked information about X 2. Now consider forgery attempts. We may assume that B always responds with φ on any forgery attempt, even if the forgery attempt turns out to be valid with respect to B s oracle. Namely, if A forges with a specific query Q, then A wins, so B s response does not matter. If Q is invalid, then B s response coincides with the true oracle. Using this flawed simulation of the decryption oracle, we obtain a model where the actual success of a specific forgery attempt does not depend on the responses to other forgery attempts (as these are always φ), only on the responses to the encryption queries. The conclusion is that we may analyze each forgery attempt separately. In addition, we may assume that all forgery attempts are made at the end of the attack (see [15] for further discussion), with the following exception: In case A makes a forgery attempt Q corresponding to a certain triple (N, H, M) and later queries (N, H, M) at the encryption oracle (e.g., by pure coincidence or by choosing a very short M that can be guessed), we cannot make the assumption that A waits until the end before she queries Q. Namely, she
17 is not allowed to make forgery attempts corresponding to previous encryption queries in this manner. Still, by construction, the responses to later encryption queries are completely unpredictable, which implies that Q cannot be valid with better probability than 2 kt ; all encrypted tags are equally likely. From now on, consider forgery attempts that do not correspond to later encryption queries in the manner just described. For such forgery attempts, we may assume that all encryption queries are already made. We need to compute the probability that a specific forgery attempt is successful. Let Q = (N, H, C ) be such an attempt and let M be the corresponding message (note that we may not know M yet). If N is not part of any encryption query, then we may apply the decryption operation in the same manner as we applied the encryption operation on encryption queries, thus generating a uniformly distributed output block for each application of ρ. With the same argument as before, it is easily seen that this simulation will fail with probability at most (l Q (l Q 1)/2 + l E l Q ) 2 k b. (2) Namely, each of the input blocks in the decryption computation is equal to some input block appearing in an encryption query with probability at most l E 2 k b ; there are l Q such blocks. With probability at most l Q (l Q 1)/2 2 k b, there is an input collision within the decryption computation. The success probability for the adversary is obviously 2 kt since each encrypted tag has the same probability. Now, assume that N is part of an encryption query Q = (N, H, M). Extract M from C by applying ρ to the relevant CTR blocks derived from N. Some of these blocks might be part of the computations needed to respond to the encryption query Q; ρ is already defined on these blocks. Define E k on the other blocks in the usual manner as uniformly distributed output blocks. The resulting message M is clearly independent from the set X 2. We identify two cases; the first block B 0 in β(n, H, M) and the first block B in β(n, H, M ) are either equal or different. 0 First, assume that B 0 = B 0. This implies that B 0 is not part of X 1. In particular, we may simulate the CBC-MAC computation in the same random manner as usual. Again, the error probability for this simulation is bounded by (2) and the success probability for the adversary is 2 kt. Namely, the CBC-MAC tag is uniformly distributed and independent from the block that is xored to it to form the encrypted tag T. Second, assume that B 0 = B0. Write β(n, H, M) = B 0.. B r ; β(n, H, M ) = B 0.. B r. Let i min{r, r } be the smallest index such that B i and B are different; i such an i exists since β is prefix-free. Let Y i 1 be the corresponding block that is xored to B i and B, respectively, within the CBC-MAC computation. i Put X i = Y i 1 B i and Xi = Y i 1 Bi. By assumption, X i is an element
18 in X 2 that is completely unknown to the adversary and independent from all other elements in X. Also, Bi is independent from all elements in X 2 (namely, the adversary has no information about X 2 ). In particular, Xi is uniformly distributed and independent from all elements in X \ {X i } and different from X i. Thus we may proceed in the usual manner from this point with the CBC-MAC computation of B 0. B 1.. Br, generating random output blocks Y i,..., Y r. As before, the error probability for this simulation is bounded by (2), and the success probability for the adversary is 2 kt. Summing over all forgery attempts, we conclude that the success probability for the adversary within this model based on RO-Simulation is at most q F 2 kt and that the probability of decryption oracle simulation failure is bounded by i l Q (l Q 1)/2 + l E l Q 2 k b (l F (l F 1)/2 + l E l F ) 2 k b ; (3) i i i this follows from (2). The total probability of simulation failure is bounded by the sum of (1) and (3), from which we conclude that the probability of success for the adversary within the true model based on RF-Simulation is bounded by q F 2 kt + l E (l E 1)/2 2 k b + (l F (l F 1)/2 + l E l F ) 2 k b < q F 2 kt + (l E + l F ) 2 2 k b 1, which is the desired bound. D B Proof of Theorem 2 We want to relate an adversary A against the privacy of CCM to a PRF distinguisher B attacking the underlying function E K. The prerequisites are the same as in the proof of Theorem 1. In addition, introduce a random oracle R ' for B that on any input block X outputs a uniformly random output block Y (without checking for consistency with previous queries). This oracle is the oracle simulated by RO-Simulation in the proof of Theorem 1. It is easily seen that B is able to provide a perfect simulation of R with probability 1 using the oracle R '. Thus we obtain that Adv priv (A) = Pr (1 B E K ) Pr(1 B R' ) CCM K K Adv prf (B) + Pr (1 B ρ ) Pr(1 B R' ). E ρ Rand(k b ) Hence we need to compute the probability that ρ, selected uniformly at random from Rand(k b ), does not provide a perfect simulation of the random oracle R '. This is the case only if B is asked to query the same input block twice. From the proof of Theorem 1 we learn that this happens with probability at most l 2 2 k b E, which gives the desired bound. D
Provable-Security Analysis of Authenticated Encryption in Kerberos
Provable-Security Analysis of Authenticated Encryption in Kerberos Alexandra Boldyreva Virendra Kumar Georgia Institute of Technology, School of Computer Science 266 Ferst Drive, Atlanta, GA 30332-0765
Symmetric Crypto MAC. Pierre-Alain Fouque
Symmetric Crypto MAC Pierre-Alain Fouque Birthday Paradox In a set of D elements, by picking at random D elements, we have with high probability a collision two elements are equal D=365, about 23 people
Overview of Cryptographic Tools for Data Security. Murat Kantarcioglu
UT DALLAS Erik Jonsson School of Engineering & Computer Science Overview of Cryptographic Tools for Data Security Murat Kantarcioglu Pag. 1 Purdue University Cryptographic Primitives We will discuss the
MAC. SKE in Practice. Lecture 5
MAC. SKE in Practice. Lecture 5 Active Adversary Active Adversary An active adversary can inject messages into the channel Active Adversary An active adversary can inject messages into the channel Eve
Lecture 9 - Message Authentication Codes
Lecture 9 - Message Authentication Codes Boaz Barak March 1, 2010 Reading: Boneh-Shoup chapter 6, Sections 9.1 9.3. Data integrity Until now we ve only been interested in protecting secrecy of data. However,
Comparison of CBC MAC Variants and Comments on NIST s Consultation Paper
Comparison of CBC MAC Variants and Comments on NIST s Consultation Paper Tetsu Iwata Department of Computer and Information Sciences, Ibaraki University 4 12 1 Nakanarusawa, Hitachi, Ibaraki 316-8511,
Authenticated Encryption: Relations among Notions and Analysis of the Generic Composition Paradigm By Mihir Bellare and Chanathip Namprempre
Authenticated Encryption: Relations among Notions and Analysis of the Generic Composition Paradigm By Mihir Bellare and Chanathip Namprempre Some slides were also taken from Chanathip Namprempre's defense
The Order of Encryption and Authentication for Protecting Communications (Or: How Secure is SSL?)
The Order of Encryption and Authentication for Protecting Communications (Or: How Secure is SSL?) Hugo Krawczyk Abstract. We study the question of how to generically compose symmetric encryption and authentication
Message Authentication Code
Message Authentication Code Ali El Kaafarani Mathematical Institute Oxford University 1 of 44 Outline 1 CBC-MAC 2 Authenticated Encryption 3 Padding Oracle Attacks 4 Information Theoretic MACs 2 of 44
Talk announcement please consider attending!
Talk announcement please consider attending! Where: Maurer School of Law, Room 335 When: Thursday, Feb 5, 12PM 1:30PM Speaker: Rafael Pass, Associate Professor, Cornell University, Topic: Reasoning Cryptographically
Security Analysis of DRBG Using HMAC in NIST SP 800-90
Security Analysis of DRBG Using MAC in NIST SP 800-90 Shoichi irose Graduate School of Engineering, University of Fukui hrs [email protected] Abstract. MAC DRBG is a deterministic random bit generator
Cryptographic hash functions and MACs Solved Exercises for Cryptographic Hash Functions and MACs
Cryptographic hash functions and MACs Solved Exercises for Cryptographic Hash Functions and MACs Enes Pasalic University of Primorska Koper, 2014 Contents 1 Preface 3 2 Problems 4 2 1 Preface This is a
Network Security. Modes of Operation. Steven M. Bellovin February 3, 2009 1
Modes of Operation Steven M. Bellovin February 3, 2009 1 Using Cryptography As we ve already seen, using cryptography properly is not easy Many pitfalls! Errors in use can lead to very easy attacks You
Lecture 10: CPA Encryption, MACs, Hash Functions. 2 Recap of last lecture - PRGs for one time pads
CS 7880 Graduate Cryptography October 15, 2015 Lecture 10: CPA Encryption, MACs, Hash Functions Lecturer: Daniel Wichs Scribe: Matthew Dippel 1 Topic Covered Chosen plaintext attack model of security MACs
Authentication requirement Authentication function MAC Hash function Security of
UNIT 3 AUTHENTICATION Authentication requirement Authentication function MAC Hash function Security of hash function and MAC SHA HMAC CMAC Digital signature and authentication protocols DSS Slides Courtesy
Authenticated encryption
Authenticated encryption Dr. Enigma Department of Electrical Engineering & Computer Science University of Central Florida [email protected] October 16th, 2013 Active attacks on CPA-secure encryption
SYMMETRIC ENCRYPTION. Mihir Bellare UCSD 1
SYMMETRIC ENCRYPTION Mihir Bellare UCSD 1 Syntax A symmetric encryption scheme SE = (K,E,D) consists of three algorithms: K and E may be randomized, but D must be deterministic. Mihir Bellare UCSD 2 Correct
Cryptographic Hash Functions Message Authentication Digital Signatures
Cryptographic Hash Functions Message Authentication Digital Signatures Abstract We will discuss Cryptographic hash functions Message authentication codes HMAC and CBC-MAC Digital signatures 2 Encryption/Decryption
Authenticated Encryption: Relations among notions and analysis of the generic composition paradigm
An extended abstract of this paper appears in Tatsuaki Okamoto, editor, Advances in Cryptology ASIACRYPT 2000, Volume 1976 of Lecture Notes in Computer Science, pages 531 545, Kyoto, Japan, December 3
Victor Shoup Avi Rubin. fshoup,[email protected]. Abstract
Session Key Distribution Using Smart Cards Victor Shoup Avi Rubin Bellcore, 445 South St., Morristown, NJ 07960 fshoup,[email protected] Abstract In this paper, we investigate a method by which smart
Lecture 15 - Digital Signatures
Lecture 15 - Digital Signatures Boaz Barak March 29, 2010 Reading KL Book Chapter 12. Review Trapdoor permutations - easy to compute, hard to invert, easy to invert with trapdoor. RSA and Rabin signatures.
Error oracle attacks and CBC encryption. Chris Mitchell ISG, RHUL http://www.isg.rhul.ac.uk/~cjm
Error oracle attacks and CBC encryption Chris Mitchell ISG, RHUL http://www.isg.rhul.ac.uk/~cjm Agenda 1. Introduction 2. CBC mode 3. Error oracles 4. Example 1 5. Example 2 6. Example 3 7. Stream ciphers
The Misuse of RC4 in Microsoft Word and Excel
The Misuse of RC4 in Microsoft Word and Excel Hongjun Wu Institute for Infocomm Research, Singapore [email protected] Abstract. In this report, we point out a serious security flaw in Microsoft
1 Message Authentication
Theoretical Foundations of Cryptography Lecture Georgia Tech, Spring 200 Message Authentication Message Authentication Instructor: Chris Peikert Scribe: Daniel Dadush We start with some simple questions
Transitions: Recommendation for Transitioning the Use of Cryptographic Algorithms and Key Lengths
NIST Special Publication 800-131A Transitions: Recommendation for Transitioning the Use of Cryptographic Algorithms and Key Lengths Elaine Barker and Allen Roginsky Computer Security Division Information
Developing and Investigation of a New Technique Combining Message Authentication and Encryption
Developing and Investigation of a New Technique Combining Message Authentication and Encryption Eyas El-Qawasmeh and Saleem Masadeh Computer Science Dept. Jordan University for Science and Technology P.O.
C O M P U T E R S E C U R I T Y
NIST Special Publication 800-56C Recommendation for Key Derivation through Extraction-then-Expansion Lily Chen Computer Security Division Information Technology Laboratory C O M P U T E R S E C U R I T
EXAM questions for the course TTM4135 - Information Security May 2013. Part 1
EXAM questions for the course TTM4135 - Information Security May 2013 Part 1 This part consists of 5 questions all from one common topic. The number of maximal points for every correctly answered question
1 Construction of CCA-secure encryption
CSCI 5440: Cryptography Lecture 5 The Chinese University of Hong Kong 10 October 2012 1 Construction of -secure encryption We now show how the MAC can be applied to obtain a -secure encryption scheme.
CS155. Cryptography Overview
CS155 Cryptography Overview Cryptography Is n A tremendous tool n The basis for many security mechanisms Is not n The solution to all security problems n Reliable unless implemented properly n Reliable
lundi 1 octobre 2012 In a set of N elements, by picking at random N elements, we have with high probability a collision two elements are equal
Symmetric Crypto Pierre-Alain Fouque Birthday Paradox In a set of N elements, by picking at random N elements, we have with high probability a collision two elements are equal N=365, about 23 people are
Recommendation for Applications Using Approved Hash Algorithms
NIST Special Publication 800-107 Recommendation for Applications Using Approved Hash Algorithms Quynh Dang Computer Security Division Information Technology Laboratory C O M P U T E R S E C U R I T Y February
Message Authentication Codes 133
Message Authentication Codes 133 CLAIM 4.8 Pr[Mac-forge A,Π (n) = 1 NewBlock] is negligible. We construct a probabilistic polynomial-time adversary A who attacks the fixed-length MAC Π and succeeds in
SECURITY IMPROVMENTS TO THE DIFFIE-HELLMAN SCHEMES
www.arpapress.com/volumes/vol8issue1/ijrras_8_1_10.pdf SECURITY IMPROVMENTS TO THE DIFFIE-HELLMAN SCHEMES Malek Jakob Kakish Amman Arab University, Department of Computer Information Systems, P.O.Box 2234,
Authentication and Encryption: How to order them? Motivation
Authentication and Encryption: How to order them? Debdeep Muhopadhyay IIT Kharagpur Motivation Wide spread use of internet requires establishment of a secure channel. Typical implementations operate in
Overview of Symmetric Encryption
CS 361S Overview of Symmetric Encryption Vitaly Shmatikov Reading Assignment Read Kaufman 2.1-4 and 4.2 slide 2 Basic Problem ----- ----- -----? Given: both parties already know the same secret Goal: send
Lecture 13: Message Authentication Codes
Lecture 13: Message Authentication Codes Last modified 2015/02/02 In CCA security, the distinguisher can ask the library to decrypt arbitrary ciphertexts of its choosing. Now in addition to the ciphertexts
MESSAGE AUTHENTICATION IN AN IDENTITY-BASED ENCRYPTION SCHEME: 1-KEY-ENCRYPT-THEN-MAC
MESSAGE AUTHENTICATION IN AN IDENTITY-BASED ENCRYPTION SCHEME: 1-KEY-ENCRYPT-THEN-MAC by Brittanney Jaclyn Amento A Thesis Submitted to the Faculty of The Charles E. Schmidt College of Science in Partial
Cryptography and Network Security Chapter 12
Cryptography and Network Security Chapter 12 Fifth Edition by William Stallings Lecture slides by Lawrie Brown (with edits by RHB) Chapter 12 Message Authentication Codes At cats' green on the Sunday he
Message Authentication Codes
2 MAC Message Authentication Codes : and Cryptography Sirindhorn International Institute of Technology Thammasat University Prepared by Steven Gordon on 28 October 2013 css322y13s2l08, Steve/Courses/2013/s2/css322/lectures/mac.tex,
Lecture 3: One-Way Encryption, RSA Example
ICS 180: Introduction to Cryptography April 13, 2004 Lecturer: Stanislaw Jarecki Lecture 3: One-Way Encryption, RSA Example 1 LECTURE SUMMARY We look at a different security property one might require
Capture Resilient ElGamal Signature Protocols
Capture Resilient ElGamal Signature Protocols Hüseyin Acan 1, Kamer Kaya 2,, and Ali Aydın Selçuk 2 1 Bilkent University, Department of Mathematics [email protected] 2 Bilkent University, Department
Modes of Operation of Block Ciphers
Chapter 3 Modes of Operation of Block Ciphers A bitblock encryption function f: F n 2 Fn 2 is primarily defined on blocks of fixed length n To encrypt longer (or shorter) bit sequences the sender must
International Journal of Information Technology, Modeling and Computing (IJITMC) Vol.1, No.3,August 2013
FACTORING CRYPTOSYSTEM MODULI WHEN THE CO-FACTORS DIFFERENCE IS BOUNDED Omar Akchiche 1 and Omar Khadir 2 1,2 Laboratory of Mathematics, Cryptography and Mechanics, Fstm, University of Hassan II Mohammedia-Casablanca,
Network Security. Chapter 3 Symmetric Cryptography. Symmetric Encryption. Modes of Encryption. Symmetric Block Ciphers - Modes of Encryption ECB (1)
Chair for Network Architectures and Services Department of Informatics TU München Prof. Carle Network Security Chapter 3 Symmetric Cryptography General Description Modes of ion Data ion Standard (DES)
Introduction. Digital Signature
Introduction Electronic transactions and activities taken place over Internet need to be protected against all kinds of interference, accidental or malicious. The general task of the information technology
Security Aspects of. Database Outsourcing. Vahid Khodabakhshi Hadi Halvachi. Dec, 2012
Security Aspects of Database Outsourcing Dec, 2012 Vahid Khodabakhshi Hadi Halvachi Security Aspects of Database Outsourcing Security Aspects of Database Outsourcing 2 Outline Introduction to Database
Breaking Generalized Diffie-Hellman Modulo a Composite is no Easier than Factoring
Breaking Generalized Diffie-Hellman Modulo a Composite is no Easier than Factoring Eli Biham Dan Boneh Omer Reingold Abstract The Diffie-Hellman key-exchange protocol may naturally be extended to k > 2
Message Authentication
Message Authentication message authentication is concerned with: protecting the integrity of a message validating identity of originator non-repudiation of origin (dispute resolution) will consider the
Designing Hash functions. Reviewing... Message Authentication Codes. and message authentication codes. We have seen how to authenticate messages:
Designing Hash functions and message authentication codes Reviewing... We have seen how to authenticate messages: Using symmetric encryption, in an heuristic fashion Using public-key encryption in interactive
Cryptography and Network Security Prof. D. Mukhopadhyay Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur
Cryptography and Network Security Prof. D. Mukhopadhyay Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture No. # 11 Block Cipher Standards (DES) (Refer Slide
Network Security. Computer Networking Lecture 08. March 19, 2012. HKU SPACE Community College. HKU SPACE CC CN Lecture 08 1/23
Network Security Computer Networking Lecture 08 HKU SPACE Community College March 19, 2012 HKU SPACE CC CN Lecture 08 1/23 Outline Introduction Cryptography Algorithms Secret Key Algorithm Message Digest
Table of Contents. Bibliografische Informationen http://d-nb.info/996514864. digitalisiert durch
1 Introduction to Cryptography and Data Security 1 1.1 Overview of Cryptology (and This Book) 2 1.2 Symmetric Cryptography 4 1.2.1 Basics 4 1.2.2 Simple Symmetric Encryption: The Substitution Cipher...
CPSC 467b: Cryptography and Computer Security
CPSC 467b: Cryptography and Computer Security Michael J. Fischer Lecture 1 January 9, 2012 CPSC 467b, Lecture 1 1/22 Course Overview Symmetric Cryptography CPSC 467b, Lecture 1 2/22 Course Overview CPSC
Cryptography and Network Security, PART IV: Reviews, Patches, and11.2012 Theory 1 / 53
Cryptography and Network Security, PART IV: Reviews, Patches, and Theory Timo Karvi 11.2012 Cryptography and Network Security, PART IV: Reviews, Patches, and11.2012 Theory 1 / 53 Key Lengths I The old
Outline. Computer Science 418. Digital Signatures: Observations. Digital Signatures: Definition. Definition 1 (Digital signature) Digital Signatures
Outline Computer Science 418 Digital Signatures Mike Jacobson Department of Computer Science University of Calgary Week 12 1 Digital Signatures 2 Signatures via Public Key Cryptosystems 3 Provable 4 Mike
MACs Message authentication and integrity. Table of contents
MACs Message authentication and integrity Foundations of Cryptography Computer Science Department Wellesley College Table of contents Introduction MACs Constructing Secure MACs Secure communication and
On the Security of Double and 2-key Triple Modes of Operation
On the Security of Double and 2-key Triple Modes of Operation [Published in L. Knudsen, d., Fast Software ncryption, vol. 1636 of Lecture Notes in Computer Science, pp. 215 230, Springer-Verlag, 1999.]
Length extension attack on narrow-pipe SHA-3 candidates
Length extension attack on narrow-pipe SHA-3 candidates Danilo Gligoroski Department of Telematics, Norwegian University of Science and Technology, O.S.Bragstads plass 2B, N-7491 Trondheim, NORWAY [email protected]
Counter Expertise Review on the TNO Security Analysis of the Dutch OV-Chipkaart. OV-Chipkaart Security Issues Tutorial for Non-Expert Readers
Counter Expertise Review on the TNO Security Analysis of the Dutch OV-Chipkaart OV-Chipkaart Security Issues Tutorial for Non-Expert Readers The current debate concerning the OV-Chipkaart security was
Chapter 3. Network Domain Security
Communication System Security, Chapter 3, Draft, L.D. Chen and G. Gong, 2008 1 Chapter 3. Network Domain Security A network can be considered as the physical resource for a communication system. This chapter
Message Authentication Codes. Lecture Outline
Message Authentication Codes Murat Kantarcioglu Based on Prof. Ninghui Li s Slides Message Authentication Code Lecture Outline 1 Limitation of Using Hash Functions for Authentication Require an authentic
CIS433/533 - Computer and Network Security Cryptography
CIS433/533 - Computer and Network Security Cryptography Professor Kevin Butler Winter 2011 Computer and Information Science A historical moment Mary Queen of Scots is being held by Queen Elizabeth and
SD12 REPLACES: N19780
ISO/IEC JTC 1/SC 27 N13432 ISO/IEC JTC 1/SC 27 Information technology - Security techniques Secretariat: DIN, Germany SD12 REPLACES: N19780 DOC TYPE: TITLE: Standing document ISO/IEC JTC 1/SC 27 Standing
HASH CODE BASED SECURITY IN CLOUD COMPUTING
ABSTRACT HASH CODE BASED SECURITY IN CLOUD COMPUTING Kaleem Ur Rehman M.Tech student (CSE), College of Engineering, TMU Moradabad (India) The Hash functions describe as a phenomenon of information security
Non-Black-Box Techniques In Crytpography. Thesis for the Ph.D degree Boaz Barak
Non-Black-Box Techniques In Crytpography Introduction Thesis for the Ph.D degree Boaz Barak A computer program (or equivalently, an algorithm) is a list of symbols a finite string. When we interpret a
1 Digital Signatures. 1.1 The RSA Function: The eth Power Map on Z n. Crypto: Primitives and Protocols Lecture 6.
1 Digital Signatures A digital signature is a fundamental cryptographic primitive, technologically equivalent to a handwritten signature. In many applications, digital signatures are used as building blocks
CS 758: Cryptography / Network Security
CS 758: Cryptography / Network Security offered in the Fall Semester, 2003, by Doug Stinson my office: DC 3122 my email address: [email protected] my web page: http://cacr.math.uwaterloo.ca/~dstinson/index.html
Leakage-Resilient Authentication and Encryption from Symmetric Cryptographic Primitives
Leakage-Resilient Authentication and Encryption from Symmetric Cryptographic Primitives Olivier Pereira Université catholique de Louvain ICTEAM Crypto Group B-1348, Belgium [email protected]
Network Security - ISA 656 Introduction to Cryptography
Network Security - ISA 656 Angelos Stavrou September 18, 2007 Codes vs. K = {0, 1} l P = {0, 1} m C = {0, 1} n, C C E : P K C D : C K P p P, k K : D(E(p, k), k) = p It is infeasible to find F : P C K Let
Identity-Based Encryption from the Weil Pairing
Appears in SIAM J. of Computing, Vol. 32, No. 3, pp. 586-615, 2003. An extended abstract of this paper appears in the Proceedings of Crypto 2001, volume 2139 of Lecture Notes in Computer Science, pages
SECURITY IN NETWORKS
SECURITY IN NETWORKS GOALS Understand principles of network security: Cryptography and its many uses beyond confidentiality Authentication Message integrity Security in practice: Security in application,
ETSI TS 102 176-2 V1.2.1 (2005-07)
TS 102 176-2 V1.2.1 (2005-07) Technical Specification Electronic Signatures and Infrastructures (ESI); Algorithms and Parameters for Secure Electronic Signatures; Part 2: Secure channel protocols and algorithms
Network Security Technology Network Management
COMPUTER NETWORKS Network Security Technology Network Management Source Encryption E(K,P) Decryption D(K,C) Destination The author of these slides is Dr. Mark Pullen of George Mason University. Permission
Yale University Department of Computer Science
Yale University Department of Computer Science On Backtracking Resistance in Pseudorandom Bit Generation (preliminary version) Michael J. Fischer Michael S. Paterson Ewa Syta YALEU/DCS/TR-1466 October
Message authentication
Message authentication -- Hash based MAC unctions -- MAC unctions based on bloc ciphers -- Authenticated encryption (c) Levente Buttyán ([email protected]) Secret preix method MAC (x) = H( x) insecure!
Network Security (2) CPSC 441 Department of Computer Science University of Calgary
Network Security (2) CPSC 441 Department of Computer Science University of Calgary 1 Friends and enemies: Alice, Bob, Trudy well-known in network security world Bob, Alice (lovers!) want to communicate
6.857 Computer and Network Security Fall Term, 1997 Lecture 4 : 16 September 1997 Lecturer: Ron Rivest Scribe: Michelle Goldberg 1 Conditionally Secure Cryptography Conditionally (or computationally) secure
A Proposal for an ISO Standard for Public Key Encryption (version 2.1)
A Proposal for an ISO Standard for Public Key Encryption (version 2.1) Victor Shoup IBM Zurich Research Lab, Säumerstr. 4, 8803 Rüschlikon, Switzerland [email protected] December 20, 2001 Abstract This
Chosen Ciphertext Attacks Against Protocols Based on the RSA Encryption Standard PKCS #1
Chosen Ciphertext Attacks Against Protocols Based on the RSA Encryption Standard PKCS #1 Daniel Bleichenbacher Bell Laboratories 700 Mountain Ave., Murray Hill, NJ 07974 [email protected]
Advanced Cryptography
Family Name:... First Name:... Section:... Advanced Cryptography Final Exam July 18 th, 2006 Start at 9:15, End at 12:00 This document consists of 12 pages. Instructions Electronic devices are not allowed.
A low-cost Alternative for OAEP
A low-cost Alternative for OAEP Peter Schartner University of Klagenfurt Computer Science System Security [email protected] Technical Report TR-syssec-11-02 Abstract When encryption messages by use
Network Security. Abusayeed Saifullah. CS 5600 Computer Networks. These slides are adapted from Kurose and Ross 8-1
Network Security Abusayeed Saifullah CS 5600 Computer Networks These slides are adapted from Kurose and Ross 8-1 Goals v understand principles of network security: cryptography and its many uses beyond
Chapter 12. Digital signatures. 12.1 Digital signature schemes
Chapter 12 Digital signatures In the public key setting, the primitive used to provide data integrity is a digital signature scheme. In this chapter we look at security notions and constructions for this
MTAT.07.003 Cryptology II. Digital Signatures. Sven Laur University of Tartu
MTAT.07.003 Cryptology II Digital Signatures Sven Laur University of Tartu Formal Syntax Digital signature scheme pk (sk, pk) Gen (m, s) (m,s) m M 0 s Sign sk (m) Ver pk (m, s)? = 1 To establish electronic
CIS 6930 Emerging Topics in Network Security. Topic 2. Network Security Primitives
CIS 6930 Emerging Topics in Network Security Topic 2. Network Security Primitives 1 Outline Absolute basics Encryption/Decryption; Digital signatures; D-H key exchange; Hash functions; Application of hash
Network Security. Gaurav Naik Gus Anderson. College of Engineering. Drexel University, Philadelphia, PA. Drexel University. College of Engineering
Network Security Gaurav Naik Gus Anderson, Philadelphia, PA Lectures on Network Security Feb 12 (Today!): Public Key Crypto, Hash Functions, Digital Signatures, and the Public Key Infrastructure Feb 14:
Ciphertext verification security of symmetric encryption schemes
www.scichina.com info.scichina.com www.springerlink.com Ciphertext verification security of symmetric encryption schemes HU ZhenYu 1, SUN FuChun 1 & JIANG JianChun 2 1 National Laboratory of Information
Cryptographic mechanisms
General Secretariat for National Defence Central Directorate for Information Systems Security PRIME MINISTER Paris, 2007 september 14 No. 1904/SGDN/DCSSI/SDS/LCR Cryptographic mechanisms Rules and recommendations
CS 393 Network Security. Nasir Memon Polytechnic University Module 11 Secure Email
CS 393 Network Security Nasir Memon Polytechnic University Module 11 Secure Email Course Logistics HW 5 due Thursday Graded exams returned and discussed. Read Chapter 5 of text 4/2/02 Module 11 - Secure
Cryptography and Network Security. Prof. D. Mukhopadhyay. Department of Computer Science and Engineering. Indian Institute of Technology, Kharagpur
Cryptography and Network Security Prof. D. Mukhopadhyay Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Module No. # 01 Lecture No. # 12 Block Cipher Standards
1 Signatures vs. MACs
CS 120/ E-177: Introduction to Cryptography Salil Vadhan and Alon Rosen Nov. 22, 2006 Lecture Notes 17: Digital Signatures Recommended Reading. Katz-Lindell 10 1 Signatures vs. MACs Digital signatures
Recommendation for Cryptographic Key Generation
NIST Special Publication 800-133 Recommendation for Cryptographic Key Generation Elaine Barker Allen Roginsky http://dx.doi.org/10.6028/nist.sp.800-133 C O M P U T E R S E C U R I T Y NIST Special Publication
