English 中文(简体)
具有数字证明的两种因素
原标题:Two Factor Authentication with Digital Certificates

我将就两个因素认证进行最后年度项目,第二个因素作为用户名/密码的数字证明。 我的想法是,在网络应用方面,如何用数字插头样本在 Java这样做。 是否有办法可以使用任何密码算法? 与数字标签有关的缺点是什么? 请让我提供一些细节。

问题回答

易于使用的是x.509证书。 页: 1 JavaTM PKI Programmer s Guide, 如同它一样,对使用x.509份证书所必需的Java/60/8s进行了很好的概述。 很多 Java开发商使用Bouncy城堡, 用于补充加密标本。

使用X.509证书的冰层是,几乎所有东西都支持这些证书。 你们可以很容易地将X.509客户证书放到大多数网络浏览器中,大多数网络服务器可以很容易配置起来接受。 建立自己的Certificate Authority TinyCA 方案。 ( opensl 指挥线工具为t awful,但丁 CA使得能够轻易获得一切权利。

The biggest downside to x.509 is probably the awkwardness involved in setting up your own CA -- so many programs have a list of CA Root Certificates that are baked into the program and supplying your own Root Certificate can be annoying -- somehow you have to transport that file to your clients in a manner that prevents tampering. (A task that would be easier if your CA root were already in the software.)





相关问题
AES 256 in CTR mode [closed]

ctr mode makes it possible to use a block cipher as a stream cipher but how strong will be the encryption in this mode ?

Illegalkeysize exception

I am using the Bouncy Castle Java cryptographic algorithm implementation. I am getting an IllegalKeySizeException. To overcome this I have even changed my java security jars (local_policy.jar and ...

Can two different strings generate the same MD5 hash code?

For each of our binary assets we generate a MD5 hash. This is used to check whether a certain binary asset is already in our application. But is it possible that two different binary assets generate ...

Load RSA keys from files

I used openSSL command to create 2 files: 1 for RSA public key & 1 for RSA private key. How do I recover RSA keys using C? Specifically, I have these functions: RSA_public_encrypt(read_num, ...

RSA cryptosystem

Hi i am trying to set up an RSA cryptosystem i have all the values except d selected prime numbers: p=1889, q=2003, n=3783667, phi=3779776, e= 61 i got stuck finding d could anyone help me to figure ...

热门标签