What is the solution for this?

ARTIFACTORY: Solution to use AES256 encryption with Artifactory

AuthorFullName__c
Dara Abedini Tafreshi
articleNumber
000005785
ft:sourceType
Salesforce
FirstPublishedDate
2023-06-15T07:07:35Z
lastModifiedDate
2023-06-14
VersionNumber
2
The quickest way to solve this problem is to turn AES256 to KMS on S3 side and once done you can add the following to the Binarystore.xml located at $JFROG_HOME/artifactory/var/etc/artifactory:
<server-side-encryption-aws-kms>true</server-side-encryption-aws-kms>
keep in mind that If set to true, S3 encrypts artifacts on the server based on the default KMS key. For example it will look something like the following:
<config version="2">
  <chain> <!--template="s3-storage-v3-direct"-->
    <provider id="cache-fs" type="cache-fs">
      <provider id="s3-storage-v3" type="s3-storage-v3"/>
    </provider>
  </chain>
  <provider id="cache-fs" type="cache-fs">
   <maxCacheSize>500000000000</maxCacheSize>  // The maximum size of the cache in bytes
   <cacheProviderDir></cacheProviderDir> // The cache location
  </provider>
  <provider id="s3-storage-v3" type="s3-storage-v3">
   <endpoint></endpoint>
   <region>eu-west-2</region>
   <bucketName></bucketName>
   <useInstanceCredentials>true</useInstanceCredentials>
   <server-side-encryption-aws-kms>true</server-side-encryption-aws-kms>
  </provider>
</config>

User-added image

As reference you can find more information regarding this via link.