Time slots app prototype
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

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);
}