All Downloads are FREE. Search and download functionalities are using the official Maven repository.

test.unit.gov.nist.javax.sip.stack.WebsocketHttpHandshakeTest Maven / Gradle / Ivy

There is a newer version: 1.3.0-91
Show newest version
package test.unit.gov.nist.javax.sip.stack;

import gov.nist.javax.sip.stack.WebSocketHttpHandshake;
import junit.framework.TestCase;
/**
 *
 */
public class WebsocketHttpHandshakeTest extends TestCase {

	public void testRegularDigest() throws Exception {

		String secWebSocketKey = "dGhlIHNhbXBsZSBub25jZQ==";
                String computed = WebSocketHttpHandshake.computeRev13Response(secWebSocketKey);
                assertEquals("s3pPLMBiTxaQ9kYGzzhZRbK+xOo=", computed);
                
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy