17 acc = acc + 2**(n-i-1)
22 """Convertit un nombre en binaire"""
24 res = [0 for i in xrange(n)]
37 return 1 if a != b else 0
40 e1b,e2b = bin(e1,h),bin(e2,h)
41 d = dec([xorb(e1b[j],e2b[j]) for j in xrange(h)],h)
44 def lit(d,(indx,indy)):
53 def forward(H_hat,x,message,lnm):
54 (h,w) = int(log(max(H_hat),2))+1, len(H_hat)
57 wght = [infinity for _ in xrange(int(2**h))]
59 newwght = [0 for _ in xrange(int(2**h))]
63 while i < nbblock: # pour chaque bit du message
67 for j in xrange(w): # pour chaque colonne de H_hat
68 #print indx, "en entrant",wght
70 while k < int(2**h): # pour chaque ligne de H
71 w0 = wght[k] + x[indx]*rho
72 w1 = wght[xor(k,H_hat[j],h)] + (1-x[indx])*rho
78 newwght[k] = min(w0,w1)
81 wght = [t for t in newwght]
82 #print " apres calcul",wght
84 for j in xrange(int(2**(h-1))): # pour chaque colonne de H
85 wght[j] = wght[2*j + message[indm]]
86 wght = wght[:int(pow(2,h-1))] + [infinity for _ in xrange(int(pow(2,h)-pow(2,h-1)))]
89 start = np.argmin(wght)
93 def backward(start,H_hat,x,message,lnm,path):
94 (h,w) = int(log(max(H_hat),2))+1, len(H_hat)
95 indx,indm = len(x)-1,lnm-1
96 state = 2*start + message[indm]
98 # l'initialisation de state n'est pas optimale...
108 for j in l: # pour chaque colonne de H_hat
109 y[indx] = lit(path,(indx,state))
110 state = xor(state,y[indx]*H_hat[j],h)
112 state = 2*state + message[indm]
115 return [int(t) for t in y]
122 def trouve_H_hat(n,m,h):
126 index = min(int(alpha),9)
131 4 : [81, 95, 107, 121],
132 5 : [75, 95, 97, 105, 117],
133 6 : [73, 83, 95, 103, 109, 123],
134 7 : [69, 77, 93, 107, 111, 115, 121],
135 8 : [69, 79, 81, 89, 93, 99, 107, 119],
136 9 : [69, 79, 81, 89, 93, 99, 107, 119, 125]
143 (mat,taille_suff) = trouve_H_hat(len(x),len(message),7)
144 x_b = x[:taille_suff]
145 (start,path) = forward(mat,x_b,message,lnm)
146 return (x_b,backward(start,mat,x_b,message,lnm,path),mat)
166 def prod(H_hat,lnm,y):
167 (h,w) = int(log(max(H_hat),2))+1, len(H_hat)
170 while i < lnm: # pour chaque ligne
171 V=[0 for _ in range(len(y))]
172 k = max([(i-h+1)*w,0])
174 for j in range(min([i+1,h])): #nbre de blocks presents sur la ligne i
175 for l in range(w): # pour chaque collone de H_hat
176 V[k] = bin(H_hat[l],h)[h-i-1+j+dec]
183 return list(np.dot(H,y))
190 if x[i] % 2 != y[i]%2 :
201 # x_b est la sous partie de x qui va etre modifiee
202 # y est le vecteur des bits modifies
203 # H_hat est la sous-matrice retenue qui est embarquee dans H
208 while count < 1000 and eval :
209 lx = randint(500,1000)
210 x = [randint(0,1) for _ in xrange(lx)]
211 lm = randint(lx/10,lx/2)
212 message = [randint(0,1) for _ in xrange(lm)]
213 (x_b,y,H_hat) = stc(x,message)
214 eval = equiv(message, prod(H_hat,len(message),y))
220 if count % 100 == 0 :
223 print nbdif(x_b,y),count