COMPARISON OF YUBIKEY VERSIONS

  BASIC
STANDARD & NANO
BASIC
EDGE & EDGE-N
PREMIUM
NEO & NEO-N
FIDO U2F SPECIAL
SECURITY KEY
PRICE – SINGLE QUANTITY $25 $30 $50 $18
 

Show Details

Show Details

Show Details

Show Details

Description Our most basic YubiKeys deliver a one-time password 
with a simple touch of a button.
No SMS-like passcodes to retype,
no client software or drivers.
YubiKey Edge supports one-time password and FIDO U2F,
for plug-n-play use with a broad range of applications.
Our premium YubiKeys support one-time password,
smart card, and FIDO U2F.
The YubiKey NEO offers both contact (USB)
and contactless (NFC, MIFARE) communications.
Designed to only support the emerging
authentication standard FIDO U2F.
Size
Form Factor & Dimensions USB KEY:
18mm x 45mm x 3mm, 3g
Mini USB KEY:
12mm x 13mm x 3mm, 1g
USB KEY:
18mm x 45mm x 3mm, 3g
Mini USB KEY:
12mm x 13mm x 3mm, 1g
USB KEY:
18mm x 45mm x 3mm, 3g
Mini USB KEY:
12mm x 13mm x 3mm, 1g
USB KEY:
18mm x 45mm x 3mm, 3g
Security Protocols/Specifications
SECURE STATIC PASSWORDS
YUBIKEY OTP
OATH – HOTP (EVENT)
OATH – TOTP (TIME)      
PIV-Compliant Smart Card
OpenPGP
FIDO U2F (Universal Second Factor)
Secure Element
Top Applications
Everywhere I type a standard password?
Google Accounts Compatible (U2F)
SalesForce.com Compatible (OTP)
LastPass
Communications Support
USB
NFC (Near Field Communication)  
Device Type
HID Keyboard
CCID Smart Card
FIDO U2F (Universal Second Factor) HID device
 

OATH-TOTP requires a helper app, YubiTOTP; NFC is included on the larger, keychain form factor of the YubiKey NEO, however NFC is NOT included on the smaller form factor, the YubiKey NEO-n.

Also see bundled products such as LastPass subscriptions with YubiKeys and Password Safe subscriptions with YubiKeys, and special products such as YubiKey VIP for Symantec and YubiHSM.

The YubiKey -- COMPARISON OF VERSIONS的更多相关文章

  1. [转]Mac OS X local privilege escalation (IOBluetoothFamily)

    Source: http://joystick.artificialstudios.org/2014/10/mac-os-x-local-privilege-escalation.html Nowad ...

  2. hadoop发行版本

    Azure HDInsight Azure HDInsight is Microsoft's distribution of Hadoop. The Azure HDInsight ecosystem ...

  3. HDU5099——Comparison of Android versions(简单题)(2014上海邀请赛重现)

    Comparison of Android versionsProblem DescriptionAs an Android developer, itˇs really not easy to fi ...

  4. Comparison of Android versions(strcmp的应用)

    Description As an Android developer, itˇs really not easy to figure out a newer version of two kerne ...

  5. 模拟 HDOJ 5099 Comparison of Android versions

    题目传送门 /* 题意:比较型号的大小 模拟:坑点在长度可能为5,此时设为'A' */ #include <cstdio> #include <algorithm> #incl ...

  6. HDOJ 5099 Comparison of Android versions 坑题

    现场赛的时候错了十四次. . ... Comparison of Android versions Time Limit: 2000/1000 MS (Java/Others)    Memory L ...

  7. 转 Comparison of Red Hat and Oracle Linux kernel versions and release strings

    Originally derived from Red Hat Enterprise Linux (RHEL), Oracle Linux (OL) contains minor difference ...

  8. The YubiKey NEO -- Smartcard features

    Smartcard features on the YubiKey NEO YubiKeys are a line of small and low-cost hardware security to ...

  9. Shape comparison language

      形状比较语言, 九交模型 In this topic About shape comparison language Dimensionality Extensions to the CBM SC ...

随机推荐

  1. 栈应用之 背包问题(Python 版)

    栈应用之 背包问题 背包问题描述:一个背包里可以放入重量为weight的物品,现有n件物品的集合s,其中物品的重量为别为w0,w1,...,wn-1.问题是能否从中选出若干件物品,其重量之和正好等于w ...

  2. SQLAlchemy-对象关系教程ORM-连接,子查询

    对象关系教程ORM-连接 一:内连接 方法一: for u, a in session.query(User, Address).\ filter(User.id==Address.user_id). ...

  3. **PHP删除数组中特定元素的两种方法array_splice()和unset()

    方法一: 复制代码代码如下: <?php$arr1 = array(1,3, 5,7,8);$key = array_search(3, $arr1); if ($key !== false)  ...

  4. USACO 5.1 Musical Themes(哈希+二分)

    Musical ThemesBrian Dean A musical melody is represented as a sequence of N (1 <= N <= 5000) n ...

  5. HDU - 5136 2014icpc南京现场赛J 计数dp

    题目大意:给你一个树的直径k,要求每个点的度数不超过3, 问你有多少棵树满足条件. 思路:好难啊. 主要思想就是将一棵无根二叉树树划分成有根二叉树. 我们对k的分奇偶讨论: 我们定义dp[ i ] 为 ...

  6. ionic启动App时不使用淡入淡出效果

    找到我们项目下面 res下面的config.xml,然后加入下面两句就可以解决. <preference name="FadeSplashScreen" value=&quo ...

  7. Git错误提示之:fatal: Not a git repository (or any of the parent directories): .git

    产生原因:一般是没有初始化git本地版本管理仓库,所以无法执行git命令 解决方法:操作之前执行以下命令行: git init 然后执行一下git status查看状态信息,good,问题解决.

  8. 创建NuGet包

    创建NuGet包 在创建一个NuGet包之前我们应该先创建一个以.nuspec为后缀的xml清单文件,这个清单文件描述了包的内容,在安装NuGet包的过程中这个清单文件扮演者很重要的角色.实际上它的作 ...

  9. 59. 螺旋矩阵 II

    给定一个正整数 n,生成一个包含 1 到 n2 所有元素,且元素按顺时针顺序螺旋排列的正方形矩阵. 示例: 输入: 3 输出: [ [ 1, 2, 3 ], [ 8, 9, 4 ], [ 7, 6, ...

  10. Python并发编程系列之多线程

    1 引言 上一篇博文详细总结了Python进程的用法,这一篇博文来所以说Python中线程的用法.实际上,程序的运行都是以线程为基本单位的,每一个进程中都至少有一个线程(主线程),线程又可以创建子线程 ...