mirror of https://github.com/beemdevelopment/Aegis
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
371 B
Java
20 lines
371 B
Java
package me.impy.aegis.crypto;
|
|
|
|
public class CryptResult {
|
|
private byte[] _data;
|
|
private CryptParameters _params;
|
|
|
|
public CryptResult(byte[] data, CryptParameters params) {
|
|
_data = data;
|
|
_params = params;
|
|
}
|
|
|
|
public byte[] getData() {
|
|
return _data;
|
|
}
|
|
|
|
public CryptParameters getParams() {
|
|
return _params;
|
|
}
|
|
}
|