01: package org.bouncycastle.jce.interfaces;
02:
03: /**
04: * Implemented by the BC provider. This allows setting of hidden parameters,
05: * such as the ImplicitCA parameters from X.962, if used.
06: */
07: public interface ConfigurableProvider {
08: static final String THREAD_LOCAL_EC_IMPLICITLY_CA = "threadLocalEcImplicitlyCa";
09: static final String EC_IMPLICITLY_CA = "ecImplicitlyCa";
10:
11: void setParameter(String parameterName, Object parameter);
12: }
|