You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
298 B
9 lines
298 B
2 years ago
|
import publicEncryptInternal from "./publicEncrypt";
|
||
|
import privateDecryptInternal from "./privateDecrypt";
|
||
|
|
||
|
export function privateEncrypt(key, buf) {
|
||
|
return publicEncryptInternal(key, buf, true);
|
||
|
}
|
||
|
export function publicDecrypt(key, buf) {
|
||
|
return privateDecryptInternal(key, buf, true);
|
||
|
}
|