我有通过RSA算法加密的消息。
我希望将此对象(SealedObject)中的消息保存为文本或字节数组或任何将其发送到服务器的内容。
SealedObject myEncyptedMessage = new SealedObject(myMessage, cipher);
答案 0 :(得分:0)
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:sonar-maven-plugin:2.7:sonar (default-cli) on project x: Unable to determine structure of project.
实现SealedObject
,因此您可以将其转换为字节,就像任何其他Serializable
对象一样。如果您不熟悉序列化,请参阅the tutorial.