Change decryption algorithm 11/42311/1
authorst782s <statta@research.att.com>
Wed, 11 Apr 2018 18:58:12 +0000 (14:58 -0400)
committerst782s <statta@research.att.com>
Wed, 11 Apr 2018 18:58:12 +0000 (14:58 -0400)
Issue-ID: PORTAL-252
Change-Id: I6d6c3aa976c5548ab3c37b2e14dfe004e222a456
Signed-off-by: st782s <statta@research.att.com>
ecomp-sdk/epsdk-app-os/src/main/java/org/onap/portalapp/login/LoginStrategyImpl.java

index b0826f6..729cfd1 100644 (file)
@@ -103,7 +103,7 @@ public class LoginStrategyImpl extends LoginStrategy {
                        if (!SystemProperties.containsProperty(SystemProperties.Decryption_Key))
                                throw new IllegalStateException("Failed to find property " + SystemProperties.Decryption_Key);
                        final String decryptionKey = SystemProperties.getProperty(SystemProperties.Decryption_Key);
-                       userId = CipherUtil.decryptPKC(cookieValue, decryptionKey);
+                       userId = CipherUtil.decrypt(cookieValue, decryptionKey);
                        logger.debug(EELFLoggerDelegate.debugLogger, "getUserIdFromCookie: decrypted as {}", userId);
                }
                return userId;