Merge pull request #1143 from scm-manager/feature/add_xml_cipher_adapter

add xml encryption adapter to encode passwords or apitoken on marshal…
This commit is contained in:
René Pfeuffer
2020-05-07 11:48:20 +02:00
committed by GitHub
4 changed files with 228 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
/*
* MIT License
*
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package sonia.scm.xml;
import com.google.common.base.Strings;
import sonia.scm.security.CipherUtil;
final class EncryptionUtil {
private static final String PREFIX = "{enc}";
private EncryptionUtil() {
}
static String decrypt(String value) {
if (!value.startsWith(PREFIX)) {
//Return value if not encrypted yet
return value;
}
return CipherUtil.getInstance().decode(value.substring(PREFIX.length()));
}
static String encrypt(String value) {
return PREFIX.concat(CipherUtil.getInstance().encode(value));
}
static boolean isEncrypted(String value) {
return !Strings.isNullOrEmpty(value) && value.startsWith(PREFIX);
}
}

View File

@@ -0,0 +1,48 @@
/*
* MIT License
*
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package sonia.scm.xml;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class XmlEncryptionAdapter extends XmlAdapter<String, String> {
@Override
public String marshal(String v) {
if (!EncryptionUtil.isEncrypted(v)) {
v = EncryptionUtil.encrypt(v);
}
return v;
}
@Override
public String unmarshal(String v) {
if (EncryptionUtil.isEncrypted(v)) {
v = EncryptionUtil.decrypt(v);
}
return v;
}
}

View File

@@ -0,0 +1,67 @@
/*
* MIT License
*
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package sonia.scm.xml;
import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat;
class EncryptionUtilTest {
private final static String API_TOKEN = "113bb79d12c179301b93e9ff1ad32181a0";
@Test
void shouldEncrypt() {
String encryptedToken = EncryptionUtil.encrypt(API_TOKEN);
assertThat(API_TOKEN).isNotEqualTo(encryptedToken);
assertThat(encryptedToken).startsWith("{enc}");
}
@Test
void shouldReturnDecryptedApiToken() {
String encryptedToken = EncryptionUtil.encrypt(API_TOKEN);
String decryptedToken = EncryptionUtil.decrypt(encryptedToken);
assertThat(decryptedToken).isEqualTo(API_TOKEN);
}
@Test
void shouldReturnApiTokenIfNotEncrypted() {
String token = EncryptionUtil.decrypt(API_TOKEN);
assertThat(token).isEqualTo(API_TOKEN);
}
@Test
void shouldCheckIfTokenIsEncrypted() {
String encryptedToken = EncryptionUtil.encrypt(API_TOKEN);
boolean encrypted = EncryptionUtil.isEncrypted(encryptedToken);
boolean notEncrypted = EncryptionUtil.isEncrypted(API_TOKEN);
assertThat(encrypted).isEqualTo(true);
assertThat(notEncrypted).isEqualTo(false);
}
}

View File

@@ -0,0 +1,60 @@
/*
* MIT License
*
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package sonia.scm.xml;
import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat;
class XmlEncryptionAdapterTest {
private final static String API_TOKEN = "113bb79d12c179301b93e9ff1ad32181a0";
private final XmlEncryptionAdapter xmlEncryptionAdapter = new XmlEncryptionAdapter();
@Test
void shouldEncryptTokenOnMarshalling() {
String marshalledToken = xmlEncryptionAdapter.marshal(API_TOKEN);
assertThat(marshalledToken).isNotEqualTo(API_TOKEN);
assertThat(marshalledToken).startsWith("{enc}");
}
@Test
void shouldUnmarshallEncryptedToken() {
String marshalledToken = xmlEncryptionAdapter.marshal(API_TOKEN);
String unmarshalledToken = xmlEncryptionAdapter.unmarshal(marshalledToken);
assertThat(unmarshalledToken).isEqualTo(API_TOKEN);
}
@Test
void shouldUnmarshallNotEncryptedToken() {
String unmarshalledToken = xmlEncryptionAdapter.unmarshal(API_TOKEN);
assertThat(unmarshalledToken).isEqualTo(API_TOKEN);
}
}