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

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

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

/**
 * Keypair for a newly created user.
 */
public final class UserCreateKeyPair {

    private UserCreateKeyPair() {}
    /**
     * user's private key encrypted with the provided passphrase
     */
    public final byte [] getUserEncryptedMasterKey() {
        byte [] ret = do_getUserEncryptedMasterKey(mNativeObj);

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

    public final PublicKey getUserPublicKey() {
        long ret = do_getUserPublicKey(mNativeObj);
        PublicKey convRet = new PublicKey(InternalPointerMarker.RAW_PTR, ret);

        return convRet;
    }
    private static native long do_getUserPublicKey(long self);

    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*/ UserCreateKeyPair(InternalPointerMarker marker, long ptr) {
        assert marker == InternalPointerMarker.RAW_PTR;
        this.mNativeObj = ptr;
    }
    /*package*/ long mNativeObj;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy