Lines Matching defs:message

42  * message should be used in authentication. Thus each message
64 * @param message The ordered components of the SLP message
67 * @param lifetime The lifetime for this message, in seconds.
77 static Hashtable makeAuthBlocks(Object[] message, int lifetime)
92 blocks.put(spi, new AuthBlock(message, spi, bsd, lifetime));
101 * @param hdr Header of message being parsed out.
102 * @param message The ordered components of the SLP message
117 Object[] message,
127 AuthBlock ab = new AuthBlock(hdr, message, dis);
191 * @param hdr Header of message being externalized.
215 * Returns the message parts obtained from the AuthBlock contructor.
217 * contain the same message Object[] Object.
220 * @return This auth block's message components Object[].
436 * Creates a new AuthBlock based on the SPI and message parts.
438 * @param message The ordered components of the SLP message
442 * @param lifetime The lifetime for this message, in seconds.
450 AuthBlock(Object[] message, String spi, int bsd, int lifetime)
453 ensureNonEmpty(message, "message");
460 this.message = message;
504 * @param hdr The header of the message being parsed.
505 * @param message The ordered components of the SLP message
517 AuthBlock(SrvLocHeader hdr, Object[] message, DataInputStream dis)
523 ensureNonEmpty(message, "message");
526 this.message = message;
578 * Returns the message parts obtained from the AuthBlock contructor.
581 * @return This auth block's message components Object[].
584 return message;
685 * @param hdr The header of the message being parsed out.
803 * Computes a hash over the SPI String, message componenets,
808 * message, and timeStamp have all been initialized. As a side
819 // Add each message component
820 int mSize = message.length;
822 sig.update((byte[]) message[i]);
921 * verify a message signed by the Principal named by 'cert'.
1118 Object[] message;