import { RsaService } from "https://deno.land/x/eas_deno@v0.0.8/services/rsa-service.ts";
Methods
decryptWithoutKey(): Promise<RsaDecryptWithoutPrivateKeyResponse>
token: string,
publicKey: string,
encryptedData: string,
decryptWithPrivateKey(): Promise<RsaDecryptResponse>
token: string,
privateKey: string,
dataToDecrypt: string,
encryptWithoutKey(): Promise<RsaEncryptWithoutKeyResponse>
token: string,
dataToEncrypt: string,
keySize: number,
encryptWithPublicKey(): Promise<RsaEncryptWithPublicResponse>
token: string,
publicKey: string,
dataToEncrypt: string,
getRsaKeys(token: string, keySize: number): Promise<RsaGetKeyPairResponse>
signWithKey(): Promise<RsaSignWithKeyResponse>
token: string,
privateKey: string,
dataToSign: string,
signWithoutKey(): Promise<RsaSignWithoutKeyResponse>
token: string,
dataToSign: string,
keySize: number,
verify(): Promise<RsaVerifyResponse>
token: string,
publicKey: string,
signature: string,
originalData: string,