blob: 8bfb576694a784e54727c5fb0c47b44c91420e83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
\begin{tikzpicture}
\def \h{4}
%Donnée utilisateur
\node[rectangle,draw=red] (s) at (2*\h,0) {Attribut sensible};
%Pipeline
\node[rectangle,draw=blue] (inf) at (0,0) {Classification};
%Attaque
\node[rectangle,draw=blue] (att) at (\h,0) {Attaque};
\draw[->,color=blue] (inf) to (att);
\draw[->,color=red] (att) to (s);
\end{tikzpicture}
|