Skip to content

Commit

Permalink
symProvider can now be configured (https://issues.jboss.org/browse/JG…
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Jan 26, 2011
1 parent 600f22c commit 8cafecb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/org/jgroups/protocols/ENCRYPT.java
Expand Up @@ -129,7 +129,8 @@ interface Observer {
@Property(name="asym_provider", description="Cryptographic Service Provider. Default is Bouncy Castle Provider")
String asymProvider=null;

static final String symProvider=null;
@Property(name="sym_provider", description="Cryptographic Service Provider. Default is Bouncy Castle Provider")
String symProvider=null;

@Property(name="asym_algorithm", description="Cipher engine transformation for asymmetric algorithm. Default is RSA")
String asymAlgorithm="RSA";
Expand Down Expand Up @@ -1054,7 +1055,7 @@ protected int getSymInit() {
/**
* @return Returns the symProvider.
*/
protected static String getSymProvider() {
protected String getSymProvider() {
return symProvider;
}

Expand Down

0 comments on commit 8cafecb

Please sign in to comment.