blob: 9232f1c7c4457bebd61e91f66c46edd8b95763fc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 Remy Suen
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Remy Suen <remy.suen@gmail.com> - initial API and implementation
******************************************************************************/
package org.eclipse.ecf.tests.protocol.msn.internal;
import junit.framework.TestCase;
import org.eclipse.ecf.protocol.msn.internal.encode.Encryption;
public class EncryptionTest extends TestCase {
public void testSHA() {
String object = "Creatorbuddy1@hotmail.comSize24539Type3Location" //$NON-NLS-1$
+ "TFR2C.tmpFriendlyAAA=SHA1DtrC8SlFx2sWQxZMIBAWSEnXc8oQ="; //$NON-NLS-1$
assertEquals(Encryption.computeSHA(object.getBytes()),
"U32o6bosZzluJq82eAtMpx5dIEI="); //$NON-NLS-1$
}
}