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

Private GIT Repository
ajout de fichiers
[canny.git] / schema.dot
1 digraph start_up { 
2         node [style = rounded, shape = rect] IC [label="Image\nCover X "]
3         node [style = rounded, shape = rect] message [label="message"]
4         node [style = rounded, shape = rect] key 
5
6         node [style = rounded, shape = rect] PI [label="Parameter\nInstantiation"]               
7         node [style = rounded, shape = rect] encrypt [label="m=encryption(message)"]             
8         node [style = rounded, shape = rect] STC [label="y= STC(x,m)"]           
9         node [style = rounded, shape = rect] emb [label="stego=embedding(y,X)"]                  
10
11         node [style = rounded, shape = rect] start end;
12         node [style = rounded, shape = rect] ED [label="x= LSB(7 bits\nEdge Detection)"]  
13         
14         node [style = "", shape = diamond] cond [label="Size of x\n enough for m"]; 
15         
16         start -> PI
17         start -> IC
18         start -> message
19         start -> key 
20
21         key ->  encrypt
22
23
24         message -> encrypt
25         IC -> ED
26         ED -> cond
27         encrypt -> cond
28         encrypt -> STC
29         cond -> STC [label="Yes"]
30         cond -> PI [label="No"]
31         
32         PI -> ED
33         STC -> emb
34         emb -> end
35         
36          }