Примеры
Шифрование и расшифрование файла:
| const cipher = new trusted.pki.Cipher();
const certs = new trusted.pki.CertificateCollection();
certs.push(trusted.pki.Certificate.load("./cert1.cer", trusted.DataFormat.PEM));
cipher.recipientsCerts = certs;
cipher.encrypt("./test.txt", "./encAssym2001.txt.enc",
trusted.EncryptAlg.GOST_28147, trusted.DataFormat.PEM);
const cipher2 = new trusted.pki.Cipher();
cipher2.decrypt("./encAssym2001.txt.enc", "./decAssym2001.txt",
trusted.DataFormat.PEM);
|