01: /*
02: * SRADecoderContext.java
03: *
04: * Created on January 27, 2003, 12:50 PM
05: */
06:
07: /**
08: *
09: * @author ss133690
10: * @version
11: */package com.sun.portal.cli.cert;
12:
13: import java.security.Provider;
14: import com.sun.portal.log.common.PortalLogger;
15:
16: public interface SRADecoderContext {
17: public Provider getDefaultProvider();
18:
19: public Provider getProvider();
20:
21: public String getEncAlgorithm();
22:
23: public String getSecretKeyAlgorithm();
24:
25: public String getDigestAlgorithm();
26:
27: public byte[] getSalt();
28: }
|