rsa-oaep-encryption
    Preparing search index...

    Interface HashAlgorithmCreator

    A factory for creating hash algorithm instances.

    import { sha256, sha512 } from 'rsa-oaep-encryption';

    // sha256 and sha512 are HashAlgorithmCreator instances
    const hash1 = sha256.create();
    const hash2 = sha512.create();
    interface HashAlgorithmCreator {
        create(): HashAlgorithm;
    }
    Index

    Methods

    Methods