Formatting only.
This commit is contained in:
parent
49a2de8f0f
commit
d2fb473a4e
|
@ -1,3 +1,18 @@
|
||||||
|
/* Copyright 2004, 2005, 2006 Acegi Technology Pty Limited
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
package org.acegisecurity.util;
|
package org.acegisecurity.util;
|
||||||
|
|
||||||
import java.io.UnsupportedEncodingException;
|
import java.io.UnsupportedEncodingException;
|
||||||
|
@ -22,6 +37,7 @@ import org.springframework.util.Assert;
|
||||||
*
|
*
|
||||||
* @author Alan Stewart
|
* @author Alan Stewart
|
||||||
* @author Ben Alex
|
* @author Ben Alex
|
||||||
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public class EncryptionUtils {
|
public class EncryptionUtils {
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,18 @@
|
||||||
|
/* Copyright 2004, 2005, 2006 Acegi Technology Pty Limited
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
package org.acegisecurity.util;
|
package org.acegisecurity.util;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
@ -9,6 +24,7 @@ import org.acegisecurity.util.EncryptionUtils.EncryptionException;
|
||||||
*
|
*
|
||||||
* @author Alan Stewart
|
* @author Alan Stewart
|
||||||
* @author Ben Alex
|
* @author Ben Alex
|
||||||
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public class EncryptionUtilsTests extends TestCase {
|
public class EncryptionUtilsTests extends TestCase {
|
||||||
private final static String STRING_TO_ENCRYPT = "Alan K Stewart";
|
private final static String STRING_TO_ENCRYPT = "Alan K Stewart";
|
||||||
|
|
Loading…
Reference in New Issue