[ 
https://issues.apache.org/jira/browse/CRYPTO-74?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15346055#comment-15346055
 ] 

Dapeng Sun edited comment on CRYPTO-74 at 6/23/16 8:38 AM:
-----------------------------------------------------------

Thank Joery for your comments, it is very detail.
Sorry,  I have a question if user have a custom Random Provider, like 
{{org.sample.CustomCryptoRandom}}, how can he install the instance. Append the 
full class name to 
{{META-INF/services/org.apache.commons.crypto.random.CryptoRandom}} and 
Recompile package is needed?


was (Author: dapengsun):
Thank Joery for your comments, it is very detail.
Sorry,  I have a question if user have custom Random Provider, like 
{{org.sample.CustomCryptoRandom}}, how can he install the instance. Append the 
full class name to 
{{META-INF/services/org.apache.commons.crypto.random.CryptoRandom}} and 
Recompile package is needed?

> Full class names make code more difficult to update
> ---------------------------------------------------
>
>                 Key: CRYPTO-74
>                 URL: https://issues.apache.org/jira/browse/CRYPTO-74
>             Project: Commons Crypto
>          Issue Type: Improvement
>            Reporter: Sebb
>
> The method CryptoRandomFactory.getCryptoRandom uses the value of a property 
> as the full name of the CryptoRandom class to be instantiated.
> This is inherently non-portable if the code package names should ever be 
> changed in future.
> One way round this is to add a constant alias for the embedded 
> implementations.
> For example:
> CryptoRandomFactory.java
> public static final String OPENSSL_RANDOM = "OpensslCryptoRandom";
> public static final String JAVA_RANDOM = "JavaCryptoRandom";
> ...
> If the COMMONS_CRYPTO_SECURE_RANDOM_CLASSES_KEY string does not contain a 
> full class name, then the code would preprend the appropriate package name 
> (or there could be a lookup table).
> This would also work for the case where the class is provided as a system 
> property value.
> Another advantage of this method is that it simplifies the user code.
> Similar considerations apply to all other factories which use class name 
> strings.
> [Note: the constants must not contain the full package names as that would 
> result in a binary incompatibility if the names changed.]



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to