Home | History | Annotate | Download | only in x500

Lines Matching refs:mess

343         /*byte [] mess = {0x30, 0x30,
365 /*byte [] mess = {0x30, 0x30,
381 byte[] mess = { 0x30, (byte) 0x81, (byte) 0x9A, 0x31, 0x0A, 0x30, 0x08,
399 ByteArrayInputStream is = new ByteArrayInputStream(mess);
413 byte[] mess = { 0x30, 0x0C, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03, 0x55,
415 ByteArrayInputStream is = new ByteArrayInputStream(mess);
425 /*byte [] mess = {0x30, 0x30,
449 byte[] mess = { 0x30, 0x0C, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03, 0x55,
451 X500Principal principal = new X500Principal(mess);
452 mess[mess.length - 1] = (byte) 0xFF;
454 assertEquals(enc[mess.length - 1], 0x41);
463 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03, 0x55,
466 X500Principal principal = new X500Principal(mess);
477 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03, 0x55,
480 X500Principal principal = new X500Principal(mess);
492 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03, 0x55,
495 X500Principal principal = new X500Principal(mess);
562 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03, 0x55,
565 mess[8] = 0x60;
566 X500Principal principal = new X500Principal(mess);
578 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03, 0x55,
581 mess[8] = 0x60;
582 X500Principal principal = new X500Principal(mess);
594 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03, 0x55,
597 mess[8] = 0x60;
598 X500Principal principal = new X500Principal(mess);
610 byte[] mess = { 0x30, (byte) 0x81, (byte) 0x9A, 0x31, 0x0A, 0x30, 0x08,
630 assertTrue(Arrays.equals(mess, s));
639 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03, 0x55,
646 assertTrue(Arrays.equals(mess, s));
655 byte[] mess = { 0x30, (byte) 0x81, (byte) 0x9A, 0x31, 0x0A, 0x30, 0x08,
671 X500Principal principal = new X500Principal(mess);
686 byte[] mess = { 0x30, (byte) 0x81, (byte) 0x9A, 0x31, 0x0A, 0x30, 0x08,
702 X500Principal principal = new X500Principal(mess);
716 byte[] mess = { 0x30, (byte) 0x81, (byte) 0x9A, 0x31, 0x0A, 0x30, 0x08,
732 X500Principal principal = new X500Principal(mess);
746 byte[] mess = { 0x30, (byte) 0x81, (byte) 0x9A, 0x31, 0x0A, 0x30, 0x08,
762 ByteArrayInputStream is = new ByteArrayInputStream(mess);
777 byte[] mess = { 0x30, (byte) 0x81, (byte) 0x9A, 0x31, 0x0A, 0x30, 0x08,
793 ByteArrayInputStream is = new ByteArrayInputStream(mess);
808 byte[] mess = { 0x30, (byte) 0x81, (byte) 0x9A, 0x31, 0x0A, 0x30, 0x08,
824 ByteArrayInputStream is = new ByteArrayInputStream(mess);
1043 byte[] mess = { 0x30, 0x0B, 0x31, 0x09, 0x30, 0x07, 0x06, 0x03, 0x55,
1046 assertTrue(Arrays.equals(mess, principal.getEncoded()));
1056 byte[] mess = { 0x30, 0x0C, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03, 0x55,
1059 assertTrue(Arrays.equals(mess, principal.getEncoded()));
1142 byte[] mess = { 0x30, 0x0B, 0x31, 0x09, 0x30, 0x07, 0x06, 0x03, 0x55,
1145 assertTrue(Arrays.equals(mess, principal.getEncoded()));
1327 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03,
1330 mess[3] = 0x12;//length field
1331 new X500Principal(mess);
1344 byte[] mess = null;
1345 new X500Principal(mess);
1357 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03,
1360 mess[3] = 0x12;//length field
1361 new X500Principal(mess);
1374 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03,
1377 mess[3] = 0x12;//length field
1378 ByteArrayInputStream is = new ByteArrayInputStream(mess);
1392 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03,
1395 mess[4] = 0x12;//inner Sequence tag field
1396 new X500Principal(mess);
1409 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03,
1412 mess[10] = (byte) 0xFE;//last byte of OID
1413 new X500Principal(mess);
1426 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03,
1429 mess[7] = 2;//length of OID
1430 new X500Principal(mess);
1442 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03, 0x55,
1445 mess[11] = (byte) 0x0F;//tag of value
1446 new X500Principal(mess);
1455 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03,
1458 mess[12] = 2;//length of value
1459 new X500Principal(mess);
1472 byte[] mess = { 0x30, 0x18, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03,
1475 mess[12] = 2;//length of value
1476 ByteArrayInputStream is = new ByteArrayInputStream(mess);
1559 byte[] mess = { 0x30, 0x0E, 0x31, 0x0C, 0x30, 0x0A, 0x06, 0x03, 0x55,
1561 X500Principal principal = new X500Principal(mess);
1573 byte[] mess = { 0x30, 0x0E, 0x31, 0x0C, 0x30, 0x0A, 0x06, 0x03, 0x55,
1575 X500Principal principal = new X500Principal(mess);
1587 byte[] mess = { 0x30, 0x0E, 0x31, 0x0C, 0x30, 0x0A, 0x06, 0x03, 0x55,
1589 X500Principal principal = new X500Principal(mess);
1601 byte[] mess = { 0x30, 0x0D, 0x31, 0x0B, 0x30, 0x09, 0x06, 0x03, 0x55,
1603 X500Principal principal = new X500Principal(mess);
1615 byte[] mess = { 0x30, 0x0D, 0x31, 0x0B, 0x30, 0x09, 0x06, 0x03, 0x55,
1617 X500Principal principal = new X500Principal(mess);
1629 byte[] mess = { 0x30, 0x0D, 0x31, 0x0B, 0x30, 0x09, 0x06, 0x03, 0x55,
1631 X500Principal principal = new X500Principal(mess);