1
0
Fork 0
mirror of https://gitlab.redox-os.org/CoffeeCode/redox-ssh.git synced 2025-12-28 16:42:19 +01:00
redox-ssh/crypto/index.html

382 lines
No EOL
18 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `crypto` crate.">
<meta name="keywords" content="rust, rustlang, rust-lang, crypto">
<title>crypto - Rust</title>
<link rel="stylesheet" type="text/css" href="../normalize.css">
<link rel="stylesheet" type="text/css" href="../rustdoc.css">
<link rel="stylesheet" type="text/css" href="../main.css">
</head>
<body class="rustdoc mod">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<nav class="sidebar">
<p class='location'>Crate crypto</p><div class="block items"><ul><li><a href="#modules">Modules</a></li></ul></div><p class='location'></p><script>window.sidebarCurrent = {name: 'crypto', ty: 'mod', relpath: '../'};</script>
</nav>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press S to search, ? for more options…"
type="search">
</div>
</form>
</nav>
<section id='main' class="content">
<h1 class='fqn'><span class='in-band'>Crate <a class="mod" href=''>crypto</a></span><span class='out-of-band'><span id='render-detail'>
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
[<span class='inner'>&#x2212;</span>]
</a>
</span><a class='srclink' href='../src/crypto/lib.rs.html#7-58' title='goto source code'>[src]</a></span></h1>
<h2 id='modules' class='section-header'><a href="#modules">Modules</a></h2>
<table>
<tr class=' module-item'>
<td><a class="mod" href="aead/index.html"
title='mod crypto::aead'>aead</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="aes/index.html"
title='mod crypto::aes'>aes</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="aes_gcm/index.html"
title='mod crypto::aes_gcm'>aes_gcm</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="aesni/index.html"
title='mod crypto::aesni'>aesni</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="aessafe/index.html"
title='mod crypto::aessafe'>aessafe</a></td>
<td class='docblock-short'>
<p>The <code>aessafe</code> module implements the AES algorithm completely in software without using any table
lookups or other timing dependant mechanisms. This module actually contains two seperate
implementations - an implementation that works on a single block at a time and a second
implementation that processes 8 blocks in parallel. Some block encryption modes really only work if
you are processing a single blocks (CFB, OFB, and CBC encryption for example) while other modes
are trivially parallelizable (CTR and CBC decryption). Processing more blocks at once allows for
greater efficiency, especially when using wide registers, such as the XMM registers available in
x86 processors.</p>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="bcrypt/index.html"
title='mod crypto::bcrypt'>bcrypt</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="bcrypt_pbkdf/index.html"
title='mod crypto::bcrypt_pbkdf'>bcrypt_pbkdf</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="blake2b/index.html"
title='mod crypto::blake2b'>blake2b</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="blake2s/index.html"
title='mod crypto::blake2s'>blake2s</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="blockmodes/index.html"
title='mod crypto::blockmodes'>blockmodes</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="blowfish/index.html"
title='mod crypto::blowfish'>blowfish</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="buffer/index.html"
title='mod crypto::buffer'>buffer</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="chacha20/index.html"
title='mod crypto::chacha20'>chacha20</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="chacha20poly1305/index.html"
title='mod crypto::chacha20poly1305'>chacha20poly1305</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="curve25519/index.html"
title='mod crypto::curve25519'>curve25519</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="digest/index.html"
title='mod crypto::digest'>digest</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="ed25519/index.html"
title='mod crypto::ed25519'>ed25519</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="fortuna/index.html"
title='mod crypto::fortuna'>fortuna</a></td>
<td class='docblock-short'>
<p>An implementation of the Fortuna CSPRNG</p>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="ghash/index.html"
title='mod crypto::ghash'>ghash</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="hc128/index.html"
title='mod crypto::hc128'>hc128</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="hkdf/index.html"
title='mod crypto::hkdf'>hkdf</a></td>
<td class='docblock-short'>
<p>This module implements the HMAC-based Extract-and-Expand Key
Derivation Function as specified by <a href="https://tools.ietf.org/html/rfc5869">https://tools.ietf.org/html/rfc5869</a>.</p>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="hmac/index.html"
title='mod crypto::hmac'>hmac</a></td>
<td class='docblock-short'>
<p>This module implements the Hmac function - a Message Authentication Code using a Digest.</p>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="mac/index.html"
title='mod crypto::mac'>mac</a></td>
<td class='docblock-short'>
<p>The mac module defines the Message Authentication Code (Mac) trait.</p>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="md5/index.html"
title='mod crypto::md5'>md5</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="pbkdf2/index.html"
title='mod crypto::pbkdf2'>pbkdf2</a></td>
<td class='docblock-short'>
<p>This module implements the PBKDF2 Key Derivation Function as specified by
<a href="http://tools.ietf.org/html/rfc2898">http://tools.ietf.org/html/rfc2898</a>.</p>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="poly1305/index.html"
title='mod crypto::poly1305'>poly1305</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="rc4/index.html"
title='mod crypto::rc4'>rc4</a></td>
<td class='docblock-short'>
<p>An implementation of the RC4 (also sometimes called ARC4) stream cipher. THIS IMPLEMENTATION IS
NOT A FIXED TIME IMPLEMENTATION.</p>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="ripemd160/index.html"
title='mod crypto::ripemd160'>ripemd160</a></td>
<td class='docblock-short'>
<p>An implementation of the RIPEMD-160 cryptographic hash.</p>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="salsa20/index.html"
title='mod crypto::salsa20'>salsa20</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="scrypt/index.html"
title='mod crypto::scrypt'>scrypt</a></td>
<td class='docblock-short'>
<p>This module implements the Scrypt key derivation function as specified in [1].</p>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="sha1/index.html"
title='mod crypto::sha1'>sha1</a></td>
<td class='docblock-short'>
<p>An implementation of the SHA-1 cryptographic hash algorithm.</p>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="sha2/index.html"
title='mod crypto::sha2'>sha2</a></td>
<td class='docblock-short'>
<p>An implementation of the SHA-2 cryptographic hash algorithms.</p>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="sha3/index.html"
title='mod crypto::sha3'>sha3</a></td>
<td class='docblock-short'>
<p>An implementation of the SHA-3 cryptographic hash algorithms.</p>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="sosemanuk/index.html"
title='mod crypto::sosemanuk'>sosemanuk</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="symmetriccipher/index.html"
title='mod crypto::symmetriccipher'>symmetriccipher</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="util/index.html"
title='mod crypto::util'>util</a></td>
<td class='docblock-short'>
</td>
</tr>
<tr class=' module-item'>
<td><a class="mod" href="whirlpool/index.html"
title='mod crypto::whirlpool'>whirlpool</a></td>
<td class='docblock-short'>
<p>An implementation of the Whirlpool cryptographic hash algorithm.</p>
</td>
</tr></table></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<aside id="help" class="hidden">
<div>
<h1 class="hidden">Help</h1>
<div class="shortcuts">
<h2>Keyboard Shortcuts</h2>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>&larrb;</dt>
<dd>Move up in search results</dd>
<dt>&rarrb;</dt>
<dd>Move down in search results</dd>
<dt>&#9166;</dt>
<dd>Go to active search result</dd>
<dt>+</dt>
<dd>Collapse/expand all sections</dd>
</dl>
</div>
<div class="infos">
<h2>Search Tricks</h2>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>type</code>, <code>macro</code>,
and <code>const</code>.
</p>
<p>
Search functions by type signature (e.g.
<code>vec -> usize</code> or <code>* -> vec</code>)
</p>
</div>
</div>
</aside>
<script>
window.rootPath = "../";
window.currentCrate = "crypto";
</script>
<script src="../main.js"></script>
<script defer src="../search-index.js"></script>
</body>
</html>