menu
CryptoRsaKeyShape
import { CryptoRsaKeyShape } from "destack:crypto/binding";
RSA key shape.
1export struct CryptoRsaKeyShape {2 algorithm: "rsa";3 modulusBits: uint32;4 publicExponent: uint32;5}Members
algorithm: "rsa"Shape discriminator.
modulusBits: uint32RSA modulus size in bits.
publicExponent: uint32RSA public exponent.