Skip to content

Commit

Permalink
setting: (#490) encrypt algorithm yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaisqls committed May 10, 2023
1 parent c5a996c commit cab6f47
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions dms-infrastructure/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ cloud:
kms:
key: ${KMS_ARN:asdf}

encrypt:
transformation: ${ENCRYPT_TRANSFORMATION}
algorithm: ${ENCRYPT_ALGORITHM}

sentry:
dsn: ${SENTRY_DSN:asdf}
traces-sample-rate: 1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ enum class EncryptType {
}

/**
* 메서드의 반환값에서 EncryptedColmn이 붙은 필드을 암호화하는 어노테이션
* 메서드의 반환값에서 EncryptedColumn이 붙은 필드을 암호화하는 어노테이션
* @see EncryptedColumn
* @see team.aliens.dms.persistence.EncryptableGenericMapper
*/
Expand All @@ -27,7 +27,7 @@ enum class EncryptType {
annotation class Encrypt

/**
* 메서드의 반환값에서 EncryptedColmn이 붙은 필드을 복호화하는 어노테이션
* 메서드의 반환값에서 EncryptedColumn이 붙은 필드을 복호화하는 어노테이션
* @see EncryptedColumn
*/
@Inherited
Expand Down

0 comments on commit cab6f47

Please sign in to comment.