-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCifradoFlujo.hs
188 lines (156 loc) · 6.95 KB
/
CifradoFlujo.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
module CifradoFlujo (golomb, lfsr, nlfsr, cifrado_flujo, descifrado_flujo,
b_massey, binary_encoding, binary_decoding) where
import Data.List
import Data.Bits
import Data.Digits (digits, unDigits)
import Data.Char (chr, ord)
-- ternary operator
data Cond a = a :? a
infixl 0 ?
infixl 1 :?
(?) :: Bool -> Cond a -> a
True ? (x :? _) = x
False ? (_ :? y) = y
{-
Ejercicio 1.
Escribe una función que determine si una secuencia de bits cumple con los
postulados de Golomb.
-}
golomb :: (Integral a) => [a] -> Bool
golomb s
| length s == 1 = True
| otherwise = cond1 && cond2 && cond3
where
s' = head s == last s ? rotar s 1 :? s
n_ones = fromIntegral $ sum s
n_zeros = (length s) - n_ones
cond1 = abs (n_ones - n_zeros) <= 1
b = map (\x -> length x) (group s')
n = takeWhile (> 0) $ map (\x -> length $ elemIndices x b) [1..]
n_c2 = dropWhile (\x -> fst x == 2*snd x) (zip n (snd (splitAt 1 n)))
cond2 = length n_c2 <= 1
dists = map (\x -> hamming_distance_one s x) [1..length s-1]
cond3 = (foldl1 (\ x y -> y - x) dists) == 0
rotar :: (Integral a) => [a] -> Int -> [a]
rotar s k = drop (length s - k) . take (2*(length s)-k) $ cycle s
hamming_distance_one :: (Integral a) => [a] -> Int -> a
hamming_distance_one s k = sum $ zipWith (\x y -> abs (x-y)) s (rotar s k)
{-
Ejercicio 2.
Implementa registros lineales de desplazamiento con retroalimentación (LFSR).
La entrada son los coeficientes del polinomio de conexión, la semilla y la
longitud de la secuencia de salida.
Ilustra con ejemplos la dependencia del período de la semilla en el caso de
polinomios reducibles, la independencia en el caso de polinomios irreducibles
y la maximalidad en el caso de polinomios primitivos.
Comprueba que los ejemplos con polinomios primitivos satisfacen los postulados
de Golomb.
-}
lfsr :: (Integral a) => [Int] -> [Int] -> a -> [Int]
lfsr c s n
| length c /= length s = error $ "La semilla y los coeficientes del" ++
" polinomio deben tener el mismo tamaño"
| otherwise = s ++ lst
where
seq = take ((fromIntegral n) - (length c - 1)) $ iterate (\x -> drop 1 (x ++
[mod (sum $ zipWith (.&.) c x) 2])) s
lst = map last $ tail seq
{-
Ejercicio 3.
Escribe una función que toma como argumentos una función polinómica $f$,
una semilla $s$ y un entero positivo $k$, y devuelve una secuencia de longitud $k$
generada al aplicar a $s$ el registro no lineal de desplazamiento con
retroalimentación asociado a $f$.
Encuentra el período de la NLFSR $((x \wedge y) \vee \bar{z}) \otimes t$
con semilla $1101$.
-}
func :: [Int] -> Int
func l
| length l /= 4 = error "La semilla debe tener tamaño 4"
| otherwise = xor t $ (.|.) z $ (.&.) x y
where
x = l !! 0
y = l !! 1
z = ((l !! 2) - 1) `mod` 2
t = l !! 3
nlfsr :: (Integral a) => ([Int] -> Int) -> [Int] -> a -> [Int]
nlfsr f s k = s ++ lst
where
seq = take ((fromIntegral k) - (length s -1)) $ iterate (\x -> drop 1
(x ++ [func x])) s
lst = map last $ tail seq
{-
Ejercicio 4.
Implementa el generador de Geffe.
Encuentra ejemplos donde el periodo de la salida es p1p2p3, con p1, p2 y p3 los
períodos de los tres LFSRs usados en el generador de Geffe.
Usa este ejercicio para construir un cifrado en flujo. Con entrada un mensaje m,
construye una llave k con la misma longitud que m, y devuelve m xor k.
El descifrado se hace de la misma forma: c xor k.
-}
geffe :: (Integral a) => ([Int], [Int], [Int], [Int], [Int], [Int]) -> a -> [Int]
geffe (p1, s1, p2, s2, p3, s3) l = zipWith3 (\x y z -> (xor) z $ (xor) x y) x12 x23 p3'
where
p1' = lfsr p1 s1 l
p2' = lfsr p2 s2 l
p3' = lfsr p3 s3 l
x12 = zipWith (.&.) p1' p2'
x23 = zipWith (.&.) p2' p3'
convertBase :: Integral a => a -> a -> [a] -> [a]
convertBase from to = digits to . unDigits from
encode :: String -> [Int]
encode c = map (ord) c
group_n :: Int -> [a] -> [[a]]
group_n _ [] = []
group_n n l
| n > 0 = (take n l) : (group_n n (drop n l))
| otherwise = error "Negative n"
decode :: [Int] -> String
decode c = map (chr) c
binary_encoding :: String -> [Int]
binary_encoding msg = concat f
where
b = map (\x -> convertBase 10 2 [x]) $ encode msg
f = map (\x -> replicate (8 - length x) 0 ++ x) b
binary_decoding :: [Int] -> String
binary_decoding msg = decode $ map (\x -> unDigits 10 x) b
where
a = group_n 8 msg
b = map (\x -> convertBase 2 10 x) a
-- let key = ([1,1,0,0,1,0], [1,1,1,1,0,1], [1,0,1,0,1,1], [1,0,1,1,1,1], [1,1,0,1,0,0], [1,1,0,1,0,0])
cifrado_flujo :: String -> ([Int], [Int], [Int], [Int], [Int], [Int]) -> [Int]
cifrado_flujo msg key = zipWith (xor) m (geffe key l)
where
m = binary_encoding msg
l = length m
descifrado_flujo :: ([Int], [Int], [Int], [Int], [Int], [Int]) -> [Int] -> String
descifrado_flujo key msg = binary_decoding $ zipWith (xor) msg (geffe key l)
where
l = length msg
{-
Ejercicio 5.
Dada una sucesión de bits periódica, determina la complejidad lineal de dicha
sucesión, y el polinomio de conexión que la genera. Para esto, usa el algoritmo de
Berlekamp-Massey.
Haz ejemplos con sumas y productos de secuencias para ver qué ocurre con
la complejidad lineal
-}
b_massey :: (Integral a) => [Int] -> (a, [Int])
b_massey s = b_massey_aux b 0 (-1) b 0 s
where
b = 1:replicate (length s-1) 0
b_massey_aux :: (Integral a) => [Int] -> a -> a -> [Int] -> a -> [Int] -> (a, [Int])
b_massey_aux c l m b n s
| length s <= fromIntegral n = (l, o)
| d == 1 && l <= (n `div` 2) = b_massey_aux t (n+1-l) n c (n+1) s
| d == 1 = b_massey_aux t l m b (n+1) s
| otherwise = b_massey_aux c l m b (n+1) s
where
v = tail $ take (fromIntegral l+2) c
w = take (fromIntegral l+1) $ reverse $ fst $
splitAt (fromIntegral n) s
d = (xor) (s !! (fromIntegral n)) (mod (sum $ zipWith (.&.) v w) 2)
e = replicate (fromIntegral (n-m)) 0 ++
take (length s - (fromIntegral (n-m))) b
t = zipWith (xor) e c
o = dropWhile (== 0) $ reverse c