“CIRN JS” Código de respuesta

CIRRY DECRYPT JAVAScript

const Cryptr = require('cryptr');
const cryptr = new Cryptr('ReallySecretKey');

const encryptedString = cryptr.encrypt('Popcorn');
const decryptedString = cryptr.decrypt(encryptedString);

console.log(encryptedString);
Undefined

CIRN JS

function getMessageEncoding() {
  const messageBox = document.querySelector(".rsa-oaep #message");
  let message = messageBox.value;
  let enc = new TextEncoder();
  return enc.encode(message);
}

function encryptMessage(publicKey) {
  let encoded = getMessageEncoding();
  return window.crypto.subtle.encrypt(
    {
      name: "RSA-OAEP"
    },
    publicKey,
    encoded
  );
}
Blue-eyed Booby

Respuestas similares a “CIRN JS”

Preguntas similares a “CIRN JS”

Más respuestas relacionadas con “CIRN JS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código