Formatting Code base with ktlint
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / health-api-common / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / healthapi / configuration / SecurityEncryptionConfiguration.kt
index 9402120..8b319fc 100644 (file)
 
 package org.onap.ccsdk.cds.blueprintsprocessor.healthapi.configuration
 
-
 import org.apache.commons.net.util.Base64
 import org.springframework.stereotype.Component
-import org.springframework.stereotype.Service
 import javax.crypto.Cipher
 import javax.crypto.spec.IvParameterSpec
 import javax.crypto.spec.SecretKeySpec
 
-
 @Component
 class SecurityEncryptionConfiguration {
+
     private val key = "aesEncryptionKey"
     private val initVector = "encryptionIntVec"