Class IssacWrapper

  • Direct Known Subclasses:
    IssacWrapperNative

    public abstract class IssacWrapper
    extends java.lang.Object
    Wrapper (특정 방법으로 보호하는 기능)
    • Constructor Summary

      Constructors 
      Constructor Description
      IssacWrapper()  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract byte[] unwrap​(byte[] wrappedData)
      입력한 데이터를 Unwrapping 한다.
      abstract byte[] wrap​(byte[] data)
      입력한 데이터를 Wrapping 한다.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • IssacWrapper

        public IssacWrapper()
    • Method Detail

      • wrap

        public abstract byte[] wrap​(byte[] data)
                             throws IssacSDKException
        입력한 데이터를 Wrapping 한다.
        Parameters:
        data - wrapping 할 데이터
        Returns:
        wrapping 된 데이터
        Throws:
        IssacSDKException - 오류 발생
      • unwrap

        public abstract byte[] unwrap​(byte[] wrappedData)
                               throws IssacSDKException
        입력한 데이터를 Unwrapping 한다.
        Parameters:
        wrappedData - wrapping 된 데이터
        Returns:
        unwrapping 된 데이터
        Throws:
        IssacSDKException - 오류 발생