@Test public void test_getPubKey_known_value()
throws NtruException
{
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)