Home / Function/ getEncryptionAlgorithm() — spring-boot Function Reference

getEncryptionAlgorithm() — spring-boot Function Reference

Architecture documentation for the getEncryptionAlgorithm() function in PemPrivateKeyParser.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  ad9fd036_4003_1938_502d_6e15c37d2c31["getEncryptionAlgorithm()"]
  a0127225_26e4_f097_c809_1f5f80482a5f["decrypt()"]
  a0127225_26e4_f097_c809_1f5f80482a5f -->|calls| ad9fd036_4003_1938_502d_6e15c37d2c31
  54ebaafa_80d9_b413_6f2a_90057db13fc7["equals()"]
  ad9fd036_4003_1938_502d_6e15c37d2c31 -->|calls| 54ebaafa_80d9_b413_6f2a_90057db13fc7
  style ad9fd036_4003_1938_502d_6e15c37d2c31 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/ssl/PemPrivateKeyParser.java lines 468–473

		private static String getEncryptionAlgorithm(@Nullable AlgorithmParameters algParameters, String algName) {
			if (algParameters != null && PBES2_ALGORITHM.equals(algName)) {
				return algParameters.toString();
			}
			return algName;
		}

Subdomains

Calls

  • equals()

Called By

Frequently Asked Questions

What does getEncryptionAlgorithm() do?
getEncryptionAlgorithm() is a function in the spring-boot codebase.
What does getEncryptionAlgorithm() call?
getEncryptionAlgorithm() calls 1 function(s): equals.
What calls getEncryptionAlgorithm()?
getEncryptionAlgorithm() is called by 1 function(s): decrypt.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free