in google-cloud-server-base/src/main/java/jetbrains/buildServer/clouds/google/utils/PluginPropertiesUtil.java [47:54]
private static void setEncryptedProperty(final String paramName, final String value,
final BasePropertiesBean bean, final boolean includeEmptyValues) {
String propName = paramName.substring(ENCRYPTED_PROPERTY_PREFIX.length());
String propertyValue = RSACipher.decryptWebRequestData(value);
if (propertyValue != null && (includeEmptyValues || propertyValue.length() > 0)) {
bean.setProperty(propName, toUnixLineFeeds(propertyValue));
}
}