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

com.github.fartherp.framework.security.dissymmetry.DisSymmetryKey Maven / Gradle / Ivy

There is a newer version: 3.0.6
Show newest version
/*
 * Copyright (c) 2017. CK. All rights reserved.
 */

package com.github.fartherp.framework.security.dissymmetry;

/**
 * Created by IntelliJ IDEA.
 *
 * @author: CK
 * @date: 2017/11/30
 */
public class DisSymmetryKey {
    private byte[] privateKey;
    private byte[] publicKey;

    public byte[] getPrivateKey() {
        return privateKey;
    }

    public void setPrivateKey(byte[] privateKey) {
        this.privateKey = privateKey;
    }

    public byte[] getPublicKey() {
        return publicKey;
    }

    public void setPublicKey(byte[] publicKey) {
        this.publicKey = publicKey;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy