HashInfo.java
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 package com.orionsec.jpkif;
00010
00011 public class HashInfo {
00012 private long swigCPtr;
00013 protected boolean swigCMemOwn;
00014
00015 public HashInfo(long cPtr, boolean cMemoryOwn) {
00016 swigCMemOwn = cMemoryOwn;
00017 swigCPtr = cPtr;
00018 }
00019
00020 public static long getCPtr(HashInfo obj) {
00021 return (obj == null) ? 0 : obj.swigCPtr;
00022 }
00023
00024 protected void finalize() {
00025 delete();
00026 }
00027
00028 public synchronized void delete() {
00029 if (swigCPtr != 0) {
00030 if (swigCMemOwn) {
00031 swigCMemOwn = false;
00032 pkif_moduleJNI.delete_HashInfo(swigCPtr);
00033 }
00034 swigCPtr = 0;
00035 }
00036 }
00037
00038 public HashInfo() {
00039 this(pkif_moduleJNI.new_HashInfo(), true);
00040 }
00041
00042 public void setM_hashAlg(HASH_ALG value) {
00043 pkif_moduleJNI.HashInfo_m_hashAlg_set(swigCPtr, this, value.swigValue());
00044 }
00045
00046 public HASH_ALG getM_hashAlg() {
00047 return HASH_ALG.swigToEnum(pkif_moduleJNI.HashInfo_m_hashAlg_get(swigCPtr, this));
00048 }
00049
00050 public void setM_hashContext(IPKIFHashContext value) {
00051 pkif_moduleJNI.HashInfo_m_hashContext_set(swigCPtr, this, IPKIFHashContext.getCPtr(value), value);
00052 }
00053
00054 public IPKIFHashContext getM_hashContext() {
00055 long cPtr = pkif_moduleJNI.HashInfo_m_hashContext_get(swigCPtr, this);
00056 return (cPtr == 0) ? null : new IPKIFHashContext(cPtr, false);
00057 }
00058
00059 public void setM_hashResult(byte[] value) {
00060 pkif_moduleJNI.HashInfo_m_hashResult_set(swigCPtr, this, value);
00061 }
00062
00063 public byte[] getM_hashResult() {
00064 byte[] ret = pkif_moduleJNI.HashInfo_m_hashResult_get(swigCPtr, this);
00065 return ret;
00066 }
00067
00068 }