admin管理员组文章数量:1344319
I'm using kotlin 19 and JVM 21.
We recently moved to maverick-synergy-client 3.1.2 (upgraded from 3.0.11 where everything worked well). This issue occurs without any additional dependencies.
Also tried using version 3.1.0 and got the same result.
When trying to create a private key to be used in maverick-synergy-client I got an error "Unable to locate a cryptographic provider"
Here's the code which I'm using to create the key:
val baseKey = """
-----BEGIN OPENSSH PRIVATE KEY-----
[replace_this]
-----END OPENSSH PRIVATE KEY-----
""".trimIndent()
val privateKey = "mt-private-key"
return try {
SshKeyUtils.getPrivateKey(baseKey.replace("[replace_this]", privateKey), uhlsportProperties.passphrase)
} catch (e: Exception) {
null
}
return null
}
Before upgrading, instead of failing, the following code was triggered in maverick-synergy-client which returned correctly:
OpenSSHPrivateKeyFile(formattedkey)
After upgrading, the function getPrivateKey
is failing and returning the error "Unable to locate a cryptographic provider"
I Tried using an older key directly as a string in order to avoid the key string replacement, also started using SshClientBuilder
from Maverick, but no success with creating the key for the client.
Note that I need to use string replacement because the real key is stored in a vault which cannot a very long string or line breaks, but I don't think this is the issue.
Why this is happening and how I can fix it?
本文标签:
版权声明:本文标题:java - While creating maverick-synergy-client, getting an error "Unable to locate a cryptographic provider" - 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743799677a2541075.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论