exports-oaep-sha512.js 838 Bytes
/**
 * RSA-OAEP-SHA512 exports
 */

import { RSA_OAEP } from './pkcs1';
import { get_sha512_instance } from '../hash/sha512/sha512';

function rsa_oaep_sha512_encrypt_bytes(data, key, label) {
  if (data === undefined) throw new SyntaxError('data required');
  if (key === undefined) throw new SyntaxError('key required');
  return new RSA_OAEP({ hash: get_sha512_instance(), key: key, label: label }).encrypt(data).result;
}

function rsa_oaep_sha512_decrypt_bytes(data, key, label) {
  if (data === undefined) throw new SyntaxError('data required');
  if (key === undefined) throw new SyntaxError('key required');
  return new RSA_OAEP({ hash: get_sha512_instance(), key: key, label: label }).decrypt(data).result;
}

export var RSA_OAEP_SHA512 = {
  encrypt: rsa_oaep_sha512_encrypt_bytes,
  decrypt: rsa_oaep_sha512_decrypt_bytes,
};