All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ironcorelabs.sdk.EncryptedBlindIndexSalt Maven / Gradle / Ivy

There is a newer version: 0.16.0
Show newest version
// Automatically generated by rust_swig
package com.ironcorelabs.sdk;


public final class EncryptedBlindIndexSalt {

    public EncryptedBlindIndexSalt(byte [] encrypted_deks, byte [] encrypted_salt_bytes) {
        mNativeObj = init(encrypted_deks, encrypted_salt_bytes);
    }
    private static native long init(byte [] encrypted_deks, byte [] encrypted_salt_bytes);

    public final byte [] getEncryptedDeks() {
        byte [] ret = do_getEncryptedDeks(mNativeObj);

        return ret;
    }
    private static native byte [] do_getEncryptedDeks(long self);

    public final byte [] getEncryptedSaltBytes() {
        byte [] ret = do_getEncryptedSaltBytes(mNativeObj);

        return ret;
    }
    private static native byte [] do_getEncryptedSaltBytes(long self);

    public final BlindIndexSearch initializeSearch(IronOxide ironoxide) throws Exception {
        long a0 = ironoxide.mNativeObj;
        long ret = do_initializeSearch(mNativeObj, a0);
        BlindIndexSearch convRet = new BlindIndexSearch(InternalPointerMarker.RAW_PTR, ret);

        JNIReachabilityFence.reachabilityFence1(ironoxide);

        return convRet;
    }
    private static native long do_initializeSearch(long self, long ironoxide) throws Exception;

    public final int hashCode() {
        int ret = do_hashCode(mNativeObj);

        return ret;
    }
    private static native int do_hashCode(long self);

    private final boolean rustEq(EncryptedBlindIndexSalt o) {
        long a0 = o.mNativeObj;
        boolean ret = do_rustEq(mNativeObj, a0);

        JNIReachabilityFence.reachabilityFence1(o);

        return ret;
    }
    private static native boolean do_rustEq(long self, long o);

    public synchronized void delete() {
        if (mNativeObj != 0) {
            do_delete(mNativeObj);
            mNativeObj = 0;
       }
    }
    @Override
    protected void finalize() throws Throwable {
        try {
            delete();
        }
        finally {
             super.finalize();
        }
    }
    private static native void do_delete(long me);
    /*package*/ EncryptedBlindIndexSalt(InternalPointerMarker marker, long ptr) {
        assert marker == InternalPointerMarker.RAW_PTR;
        this.mNativeObj = ptr;
    }
    /*package*/ long mNativeObj;

    public boolean equals(Object obj) {
        if(obj instanceof EncryptedBlindIndexSalt){
            EncryptedBlindIndexSalt other = (EncryptedBlindIndexSalt) obj;
            return other.rustEq(this);
        }
        return false;
    }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy