]> AND Private Git Repository - canny.git/blob - schema2.dot
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
6c8a0ae8eefad782eb698e8c47526216b44e64ca
[canny.git] / schema2.dot
1 digraph start_up { 
2         node [style = rounded, shape = rect] SI [label="Stego Image"]
3         node [style = rounded, shape = rect] key [label="Key k"]
4         node [style = rounded, shape = rect] start [label="Start"]               
5         node [style = rounded, shape = rect] end [label="End"]           
6         node [style = rounded, shape = rect] PIb [label="Param. b"]              
7         node [style = rounded, shape = rect] PIh [label="Param. H"]              
8         node [style = rounded, shape = rect] STC [label="m = STCr(y,H)"]                 
9         node [style = rounded, shape = rect] ED [label="y=edgeDetection(b bits)"]  
10         node [style = rounded, shape = rect] decrypt [label="message=decryption(m)"]             
11
12
13
14         start -> SI
15         start -> PIb
16         start -> PIh
17         
18         PIb -> ED
19         PIh -> STC
20         
21         start -> key 
22
23         SI -> ED
24         ED -> STC 
25         
26         STC -> decrypt
27         key -> decrypt
28         decrypt -> end
29         
30                 
31         
32          }