@haxall/haxall
    Preparing search index...

    Interface DSAKeyPairOptions<PubF, PrivF>

    interface DSAKeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {
        divisorLength: number;
        modulusLength: number;
        privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {
            type: "pkcs8";
        };
        publicKeyEncoding: { format: PubF; type: "spki" };
    }

    Type Parameters

    Index

    Properties

    divisorLength: number

    Size of q in bits

    modulusLength: number

    Key size in bits

    privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & { type: "pkcs8" }
    publicKeyEncoding: { format: PubF; type: "spki" }