HTML标签
<!-->
<!DOCTYPE>
<a>
<abbr>
<acronym>
<address>
<applet>
<area>
<article>
<aside>
<audio>
<b>
<base>
<basefont>
<bdi>
<bdo>
<big>
<blockquote>
<body>
<br>
<button>
<canvas>
<caption>
<center>
<cite>
<code>
<col>
<colgroup>
<command>
<datalist>
<dd>
<del>
<details>
<dfn>
<dialog>
<dir>
<div>
<dl>
<dt>
<em>
<embed>
<fieldset>
<figcaption>
<figure>
<font>
<footer>
<form>
<frame>
<frameset>
<head>
<header>
<hgroup>
<h1> - <h6>
<hr>
<i>
<iframe>
<img>
<input>
<ins>
<kbd>
<keygen>
<label>
<legend>
<li>
<link>
<map>
<mark>
<menu>
<meta>
<meter>
<nav>
<noframes>
<noscript>
<object>
<ol>
<optgroup>
<option>
<output>
<p>
<param>
<pre>
<html>
<progress>
<q>
<rp>
<rt>
<ruby>
<s>
<samp>
<script>
<section>
<select>
<small>
<source>
<span>
<strike>
<strong>
<style>
<sub>
<summary>
<sup>
<table>
<tbody>
<td>
<textarea>
<tfoot>
<th>
<thead>
<time>
<title>
<tr>
<track>
<tt>
<u>
<ul>
<var>
<video>
<wbr>
keytype
HTML <keygen> keytype 属性
实例
通过 RSA 算法生成密钥:
<form action="demo_keygen.html" method="get">
Username: <input type="text" name="usr_name">
Encryption: <keygen name="security" keytype="rsa">
<input type="submit">
</form>
Username: <input type="text" name="usr_name">
Encryption: <keygen name="security" keytype="rsa">
<input type="submit">
</form>
浏览器支持
Firefox、Opera 和 Chrome 支持 <keygen> 标签的 keytype 属性。
定义和用法
keytype 属性规定应该使用哪种密钥生成算法。
不同的浏览器对密钥生成算法的支持会有所变化。
HTML 4.01 与 HTML5之间的差异
<keygen> 标签是 HTML5 中的新标签。
语法
<keygen keytype="rsa|dsa|ec">
属性值
值 | 描述 |
---|---|
rsa | 默认。规定 RSA 安全算法。RSA 密钥强度可由用户选择。 |
dsa | 规定 DSA 安全算法。DSA 密钥长度可由用户选择。 |
ec | 规定 EC 安全算法。EC 密钥强度可由用户选择。 |