gpt4 book ai didi

java - 从编码的私钥字节中提取算法 ID

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:43:52 26 4
gpt4 key购买 nike

是否可以单独从编码字节数组创建 PrivateKey事先不知道算法

所以在某种程度上它是对 that question 的扭曲,答案中没有解决这个问题。

假设我有一对这样生成的 key :

KeyPair keyPair = KeyPairGenerator.getInstance("RSA").generateKeyPair(); // Could be "EC" instead of "RSA"
String privateKeyB64 = Base64.getEncoder().encodeToString(keyPair.getPrivate().getEncoded());
writePrivateKeyToSafeLocation(privateKeyB64);

要从 base64 编码的字节中获取 PrivateKey,我可以这样做,但我必须提前知道算法系列:

String privateKeyB64 = readPrivateKeyFromSafeLocation();
EncodedKeySpec encodedKeySpec = new PKCS8EncodedKeySpec(Base64.getDecoder().decode(privateKeyB64));
byte[] encodedKeyBytes = encodedKeySpec.getEncoded();
String algorithmFamily = "RSA"; // Can this be deduced from encodedKeyBytes?
PrivateKey key = KeyFactory.getInstance(algorithmFamily).generatePrivate(encodedKeySpec);

不幸的是 encodedKeySpec.getAlgorithm() 返回 null

我很确定算法 ID 实际上是在 PKCS#8 格式的那些字节中指定的,但我不确定如何读取 ASN.1 编码。

我可以从这些字节中以可靠的方式“嗅探”算法 ID 吗?

只支持 RSA 和 EC(JRE 支持的算法,无需额外提供程序)就可以了。

为了了解我所追求的,这里有一个似乎凭经验行之有效的尝试:

private static final byte[] EC_ASN1_ID = {42, -122, 72, -50, 61, 2, 1};
private static final byte[] RSA_ASN1_ID = {42, -122, 72, -122, -9, 13, 1, 1, 1};
private static final int EC_ID_OFFSET = 9;
private static final int RSA_ID_OFFSET = 11;

private static String sniffAlgorithmFamily(byte[] keyBytes) {
if (Arrays.equals(Arrays.copyOfRange(keyBytes, EC_ID_OFFSET, EC_ID_OFFSET + EC_ASN1_ID.length), EC_ASN1_ID)) {
return "EC";
}
if (Arrays.equals(Arrays.copyOfRange(keyBytes, RSA_ID_OFFSET, RSA_ID_OFFSET + RSA_ASN1_ID.length), RSA_ASN1_ID)) {
return "RSA";
}
throw new RuntimeException("Illegal key, this thingy requires either RSA or EC private key");
}

但我不知道使用它是否安全。也许 ID 并不总是在这些偏移量处。也许它们可以用其他方式编码...

最佳答案

正如 James 在评论中所建议的那样,以一种更安全的方式尝试每一种支持的算法都会起作用。

可以动态获取此类算法的列表:

Set<String> supportedKeyPairAlgorithms() {
Set<String> algos = new HashSet<>();
for (Provider provider : Security.getProviders()) {
for (Provider.Service service : provider.getServices()) {
if ("KeyPairGenerator".equals(service.getType())) {
algos.add(service.getAlgorithm());
}
}
}
return algos;
}

然后,尝试所有这些来生成 KeyPair:

PrivateKey generatePrivateKey(String b64) {
byte[] bytes = Base64.getDecoder().decode(b64);
for (String algorithm : supportedKeyPairAlgorithms()) {
try {
LOGGER.debug("Attempting to decode key as " + algorithm);
return KeyFactory.getInstance(algorithm).generatePrivate(new PKCS8EncodedKeySpec(bytes));
} catch (NoSuchAlgorithmException e) {
LOGGER.warn("Standard algorithm " + algorithm + " not known by this Java runtime from outer space", e);
} catch (InvalidKeySpecException e) {
LOGGER.debug("So that key is not " + algorithm + ", nevermind", e);
}
}
throw new RuntimeException("No standard KeyFactory algorithm could decode your key");
}

关于java - 从编码的私钥字节中提取算法 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57011291/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com