{
for (OID oid : OID.values())
{
NtruEncryptTestVector test = findTest(oid);
byte blob[] = getPubKeyBlob(test);
NtruEncryptKey k = new NtruEncryptKey(blob);
byte blob2[] = k.getPubKey();
assertArrayEquals(blob2, blob);
if (oid == OID.ees401ep1)
assertEquals(blob.length, 556);
else if (oid == OID.ees449ep1)
assertEquals(blob.length, 622);