Is SignedObject Safe to Deliver to Client Applications

SignedObject  (Serializable  object, PrivateKey  signingKey, Signature  signingEngine)

Is it safe to serialize and deliver this object to the client application? Is there a way they can take possession of PrivateKey through reflection?

I want to use this object to store a digital signature, as well as for data that has been signed.

+3
source share
2 answers

Serialized objects include only the object itself and the signature (and the algorithm used for signing purposes), as indicated here:

http://java.sun.com/j2se/1.4.2/docs/api/serialized-form.html#java.security.SignedObject

. , , , ( ).

+1

Source: https://habr.com/ru/post/1753238/


All Articles