blob: 938f3c5e92197c0db92564394d0f8a89350cac90 [file] [log] [blame]
Tomasz Golabekc8fcbbc2019-07-09 08:42:59 +02001/*-
2 * ============LICENSE_START=======================================================
3 * SDC
4 * ================================================================================
5 * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20
Yuli Shlosberga4eeb112019-01-07 16:23:36 +020021import org.junit.Test;
22
23import java.util.Base64;
Tomasz Golabeke558a642019-08-21 10:40:45 +020024import org.openecomp.sdc.securityutil.SecurityUtil;
Yuli Shlosberga4eeb112019-01-07 16:23:36 +020025
26import static org.junit.Assert.assertEquals;
27import static org.junit.Assert.assertNotEquals;
28
29public class SecurityUtilTest {
30
31 @Test
32 public void encryptDecryptAES128() {
33 String data = "decrypt SUCCESS!!";
34 String encrypted = SecurityUtil.INSTANCE.encrypt(data).left().value();
35 assertNotEquals( data, encrypted );
36 byte[] decryptMsg = Base64.getDecoder().decode(encrypted);
37 assertEquals( SecurityUtil.INSTANCE.decrypt( decryptMsg , false ).left().value() ,data );
38 assertEquals( SecurityUtil.INSTANCE.decrypt( encrypted.getBytes() , true ).left().value() ,data );
39 }
40
41 @Test
42 public void obfuscateKey() {
43 String key = "abcdefghij123456";
44 String expectedkey = "********ij123456";
45 String obfuscated = SecurityUtil.INSTANCE.obfuscateKey( key );
46 System.out.println( obfuscated );
47 assertEquals( obfuscated , expectedkey );
48 }
Tomasz Golabekc8fcbbc2019-07-09 08:42:59 +020049}