com.ibm.wsspi.security.audit

Interface AuditSigning


  1. public interface AuditSigning

Method Summary

Modifier and Type Method and Description
  1. void
initialize(java.lang.String _signerKeyStoreName,java.lang.String _signerKeyStoreScope,java.lang.String _signerCertAlias)
The initialize method initializes the AuditSigning implementation
  1. byte[]
sign(byte[] value,java.security.Key key)
The sign method signs the data with a key
  1. boolean
verify(byte[] data,java.security.Key key)
The verify method verifies the data is signed with a key

Method Detail

initialize

  1. void initialize(java.lang.String _signerKeyStoreName,
  2. java.lang.String _signerKeyStoreScope,
  3. java.lang.String _signerCertAlias)
  4. throws com.ibm.wsspi.security.audit.AuditSignException

The initialize method initializes the AuditSigning implementation

Throws:
AuditSignException

sign

  1. byte[] sign(byte[] value,
  2. java.security.Key key)
  3. throws com.ibm.wsspi.security.audit.AuditSignException

The sign method signs the data with a key

Throws:
AuditSignException

verify

  1. boolean verify(byte[] data,
  2. java.security.Key key)
  3. throws com.ibm.wsspi.security.audit.AuditSignException

The verify method verifies the data is signed with a key

Throws:
AuditSignException