File:PKE.svg

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Original file(SVG file, nominally 146 × 216 pixels, file size: 30 KB)

Captions

Captions

Add a one-line explanation of what this file represents

Summary

[edit]
Description
English: Flow diagram of a public-key encryption scheme
Date
Source Own work
Author Taylor Riastradh Campbell

Source code

[edit]
\documentclass{standalone}

\usepackage{amsmath}
\usepackage{tikz}
\usepackage{xcolor}

% Colorblind-friendly palette from <https://jfly.uni-koeln.de/color/>.
\definecolor{Vermillion}        {cmy}{0,    0.8, 1}
\definecolor{Orange}            {cmy}{0,    0.5, 1}
\definecolor{SkyBlue}           {cmy}{0.8,  0,   0}
\definecolor{BluishGreen}       {cmy}{0.97, 0,   0.75}
\definecolor{Yellow}            {cmy}{0.1,  0.5, 0.9}
\definecolor{Blue}              {cmy}{1,    0.5, 0}
\definecolor{ReddishPurple}     {cmy}{0.1,  0.7, 0}

\begin{document}

\begin{tikzpicture}

\usetikzlibrary{calc}
\usetikzlibrary{shapes}

% Nodes representing data.
\tikzset{publicdatum/.style={
    shape=circle,
    rounded corners=0.5ex,
    minimum height=4ex,
    fill=SkyBlue, fill opacity=0.4,
    text opacity=1,
}}
\tikzset{secretdatum/.style={
    shape=rectangle,
    rounded corners=0.5ex,
    minimum height=4ex,
    fill=Vermillion, fill opacity=0.4,
    text opacity=1,
}}

% Nodes representing operations on data.
\tikzset{operation/.style={
    shape=trapezium,
    trapezium left angle=-65,
    trapezium right angle=-65,
    minimum height=4ex,
}}

\node (gen) at (1/4, 5) [draw, operation] {$\operatorname{Gen}$};
  \coordinate (gen-pk) at ($(gen.south) - (1/4,0)$);
  \coordinate (gen-sk) at ($(gen.south) + (1/4,0)$);

\node (m0) at (-2.5, 3) [draw, secretdatum] {$m$};
\node (pk) at (-1.5, 3) [draw, publicdatum] {$\mathit{pk}$};

\node (encrypt) at (-2, 2) [draw, operation]
    {$\operatorname{Encrypt}(\mathit{pk}, m)$};
  \coordinate (encrypt-m) at ($(encrypt.north) - (1/2,0)$);
  \coordinate (encrypt-pk) at ($(encrypt.north) + (1/2,0)$);
  \coordinate (encrypt-c) at (encrypt.south);

\node (c) at (-1.25, 0.5) [draw, publicdatum] {$c$};

\node (sk) at (0.5, 0) [draw, secretdatum] {$\mathit{sk}$};

\node (decrypt) at (0, -1) [draw, operation]
    {$\operatorname{Decrypt}(\mathit{sk}, c)$};
  \coordinate (decrypt-c) at ($(decrypt.north) - (1/2,0)$);
  \coordinate (decrypt-sk) at ($(decrypt.north) + (1/2,0)$);
  \coordinate (decrypt-m) at (decrypt.south);

\node (m1) at (0, -2) [draw, secretdatum] {$m$};

\draw[->] (gen-pk) |- ($(pk) + (0,1)$) -- (pk);
\draw[->] (gen-sk) -- (sk);

\draw[->] (m0) -- (encrypt-m);
\draw[->] (pk) -- (encrypt-pk);
\draw[->] (encrypt-c) |- (c);

\draw[->] (c) -| (decrypt-c);
\draw[->] (sk) -- (decrypt-sk);
\draw[->] (decrypt-m) -- (m1);

\end{tikzpicture}

\end{document}

Licensing

[edit]
I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current14:06, 21 July 2024Thumbnail for version as of 14:06, 21 July 2024146 × 216 (30 KB)Taylor Riastradh Campbell (talk | contribs)Uploaded while editing "Key encapsulation mechanism" on en.wikipedia.org

There are no pages that use this file.

File usage on other wikis

The following other wikis use this file:

Metadata