On Tue, Mar 04, 2003 at 02:09:29PM -0800, Mark Simonton wrote: > Does deep copy for ByteArrayParameter mean make sure that the data is copied > to a new secure byte block?
I'm not quite sure what you're asking. There is no deep copy option on ByteArrayParameter, only on ConstByteArrayParameter. The purpose of the option is, when getting some data out of an object as a byte array, if the object does not store the data natively as a byte array, it can't just pass out a pointer to a byte array, so instead it converts its data into a byte array and passes out a deep copy of it.
