问题标签 [dsa]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
558 浏览

tomcat - 一个 tomcat 服务器可以同时支持 RSA 和 DSA 证书吗?

为了同时提供 RSA 和 DSA 证书,我使用了两个具有不同 IP 地址的连接器。但是是否有可能在一个 IP 地址下有多个 ssl 证书?

我也尝试过在tomcat上进行虚拟主机,但我没有在“主机”下找到任何属性来为每个主机指定证书。

最后,我尝试使用 apache 服务器(httpd)与使用 mod_jk 连接器的 tomcat 一起使用。因为它可以为每个域(在虚拟主机中)提供不同的证书。

我需要使用httpd吗?或者在tomcat中有这个问题的解决方案吗?

任何帮助将不胜感激...

0 投票
1 回答
2167 浏览

java - Encrypt a DSA private key with RSA public key

I want to encrypt the DSA secret key with the RSA public key using java. However, when I do so, I get this error:

DSA and RSA key size is set to 1024 and 2048 respectively. I know that using RSA we cannot encrypt messages having size more than the RSA key size. However, in this case, DSA key size is less than RSA key size.

I guess the problem is related to the getEncode() function because when I checked the return value of this function, I understood that the size of result is 335 byte.

I want to know how I can fix this problem? (I do not want to increase RSA the key size). I set DSA key size to 1024. Why DSA key size has the size of 335 byte after encoding?

DSA and RSA keygen functions as well as RSA encryption functions are as follow:

and I call this function for encrypting DSA key with RSA public key:

0 投票
1 回答
782 浏览

.net - BigInteger ModInverse

Is this VB calculation

a proper implementation of this written calculation

enter image description here

I'm basing my calculation of the fact that

enter image description here

can be computed by

enter image description here

as per this Wikipedia article on Digital Signature Algorithm

0 投票
1 回答
230 浏览

.net - DSACryptoServiceProvider.ImportParameters '坏数据'

我正在使用FIPS PUB 186中给出的参数测试 DSACryptoServiceProvider 。

当我尝试导入公钥参数时,收到“错误数据”错误:

.

.

错误消息没有帮助。我看不出有什么问题,我已经尝试了我能想到的一切。

0 投票
0 回答
367 浏览

java - 数据上的数字签名

我正在尝试使用 DSA 签名和验证文本。我已经编写了示例代码来签名。但它不起作用。你能帮忙吗?这只是一个测试,因为这个想法是对数据进行签名,记录在标签中,当我读取标签时,我想用数字签名验证数据。

0 投票
1 回答
1644 浏览

python - 使用 pycrypto 验证 DSA 密钥对(获取 pqg 值)

我有一个存储 ssh 密钥的应用程序。用户将他的私钥和公钥写入 2 个文本框,在存储它们之前,我的应用程序应该检查私钥是否与公钥匹配(使用 pycrypto)。验证 RSA 对很容易:

我找到了似乎验证 DSA 密钥对的代码,但我找不到如何从用户公钥和私钥中提取 PQG 值:

请不要提示我使用 ssh-keygen 之类的功能从私钥中生成公钥。我知道这种方法,我想用 pycrypto 来做。

0 投票
2 回答
578 浏览

java - Java排序中的链表实现不起作用

我创建了自己的链表。我想使用 Collections.sort 方法对我的链表进行排序。所以我将 MyLinkedList 类扩展到 java.util.LinkedList。我还创建了 Comparator 和 Comparable 实现。但两者都不起作用。请找到下面的代码。

// 链表实现。

// 测试链表

//员工类

0 投票
1 回答
1395 浏览

c++ - C 转换失败:无法从 void* 转换为 C 结构

代码 :

.

错误:无法从 void* 转换为单一列表。

问题:我无法弄清楚错误背后的原因。谁能解释一下这是什么错误?

0 投票
4 回答
390 浏览

c - Tree traversal - Segmentation fault error

Code :

Error : Segmentation Fault

This code is for construction of binary tree traversal and conversion of postfix to infix and prefix. I dont know where am going wrong but it keeps saying the same fault. Can anyone help me with this ?

0 投票
1 回答
219 浏览

ssh - 检索 DSA 密钥密码

我使用带有密码的 dsa 密钥通过 ssh 登录到 CentOS 6 远程服务器。不幸的是,我忘记了密码。

有没有办法重置或检索密码?

我仍然可以通过 webmin 访问远程服务器的根目录。