harness.check(Arrays.equals(cipherText, KM128_WRAPPED128),
"128-bit key material wrapped w/ 128-bit KEK MUST match "
+ "expected value");
kwa.init(Cipher.UNWRAP_MODE, kek);
Key k = kwa.unwrap(cipherText, "AES", Cipher.SECRET_KEY);
harness.check(km.equals(k),
"Unwrapped and original key-material MUST match");
}
catch (Exception x)
{