Can we use encrypted password in opensearch.yml for plugins.security.ssl.transport.keystore_password

I am using Keystore and truststore files to configure security plug-in. But while configuring it we have to provided the keystore and truststore password in plain text format like below. Can we use these password in encrypted format ?
plugins.security.ssl.transport.enabled: true
plugins.security.ssl.transport.keystore_type: pkcs12
plugins.security.ssl.transport.keystore_filepath: …/config/certs/my-keystore.p12
plugins.security.ssl.transport.keystore_password: changeit
plugins.security.ssl.transport.truststore_type: pkcs12
plugins.security.ssl.transport.truststore_filepath: …/config/certs/my-truststore.p12
plugins.security.ssl.transport.truststore_password: changeit

@szwlhd Currently OpenSearch allows using clear text or environment variables with kyestore/trustore password.

You could report this issue as a feature request at OpenSearch GitHub.

Thanks for reply I have raised and issue
https://github.com/opensearch-project/security/issues/1549