Interface CryptoKeyRsaKeyAlgorithm

interface CryptoKeyRsaKeyAlgorithm {
    hash?: CryptoKeyKeyAlgorithm;
    modulusLength: number;
    name: string;
    publicExponent: ArrayBuffer | ArrayBufferView;
}

Properties

modulusLength: number
name: string
publicExponent: ArrayBuffer | ArrayBufferView