Project 'eclipsefdn/it/webdev/solstice-assets' was moved to 'eclipsefdn/software-dev/frameworks-and-tools/solstice-assets'. Please update any links and bookmarks that may still have the old path.
Various tweaks to the common library
1 unresolved thread
Merged
requested to merge malowe/eclipsefdn-api-common:malowe/main/misc-updates-formatting into main
1 unresolved thread
Contains following upgrades
- Centralized encryption util methods
- Addition of BC security augmentation to core
- Deprecation of unused auth role augmentor
- Extraction of providers to separate package to help clarify packages
- Deprecation of LoggingHelper to move method to more generic TransformationHelper (name pending)
Merge request reports
Activity
added 1 commit
- be3d062d - Add additional config for encryption values in encryption utils
added 5 commits
-
c9b86c4f - 1 commit from branch
eclipsefdn/it/api:main - fe5f2116 - Move existing providers to new package to cleanup config package
- e775a270 - Add bouncycastle to base implementation, consolidate formatting helpers
- c8e70293 - Deprecate unused authentication role augmentation class
- 4f5fdf9d - Add additional config for encryption values in encryption utils
Toggle commit list-
c9b86c4f - 1 commit from branch
requested review from @zacharysabourin
37 /** 38 * Helper class used to perform string transformation operations, such as sanitation and encryption. 39 */ 40 @ApplicationScoped 41 public class TransformationHelper { 42 private static final Logger LOGGER = LoggerFactory.getLogger(TransformationHelper.class); 43 44 @Inject 45 EncryptionSecurityConfig encryptionConfig; 46 47 @Inject 48 CachingService cache; 49 50 /** 51 * Encrypts an string using the public key in the application configs and returns the result in a Base64 encoded string. 52 * Returns the original string if there was an error. changed this line in version 4 of the diff
added 6 commits
- 650badce - Move existing providers to new package to cleanup config package
- c975562c - Add bouncycastle to base implementation, consolidate formatting helpers
- 9a34a2b6 - Deprecate unused authentication role augmentation class
- be3d062d - Add additional config for encryption values in encryption utils
- 7a7de43f - Iss #93 (closed) - Add default max cache size to restrict impact on host
- 2ddc1078 - Fix bad documentation for TransformationHelper
Toggle commit listadded 7 commits
-
c9b86c4f - 1 commit from branch
eclipsefdn/it/api:main - d2fc53e1 - Move existing providers to new package to cleanup config package
- 4f6e301a - Add bouncycastle to base implementation, consolidate formatting helpers
- 5e926666 - Deprecate unused authentication role augmentation class
- d23c4945 - Add additional config for encryption values in encryption utils
- c35284fd - Iss #93 (closed) - Add default max cache size to restrict impact on host
- c61e2cf9 - Fix bad documentation for TransformationHelper
Toggle commit list-
c9b86c4f - 1 commit from branch
Please register or sign in to reply