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

Private GIT Repository
kl
[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         node [style = "", shape = diamond] condEmb [label="Use of STC"]; 
13
14         node [style = rounded, shape = rect] sample [label= "m=sample(y)"]      
15
16         start -> SI
17         start -> PIb
18         start -> PIh
19         
20         PIb -> ED
21         PIh -> STC
22         
23         start -> key 
24
25         SI -> ED
26         ED -> condEmb 
27
28         condEmb -> STC [label="Yes"]
29         condEmb -> sample [label="No"]
30         key -> sample
31         
32         STC -> decrypt
33         sample -> decrypt
34         key -> decrypt
35         decrypt -> end
36         
37                 
38         
39          }