* Initializes the KeyVersion.
*
* @param builder Builder, possibly with serialized data.
*/
protected KeyVersion(Builder builder) {
KeyVersionData data = builder.kvData;
if (data != null) {
// Extract the core (important stuff)
coreBytes = data.getCore();
// Extract other fields if necessary
}
}