All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.web.webcrypto.DhKeyAlgorithm Maven / Gradle / Ivy

package js.web.webcrypto;

import js.util.buffers.Uint8Array;
import org.teavm.jso.JSProperty;


public interface DhKeyAlgorithm extends KeyAlgorithm {
    @JSProperty
    Uint8Array getGenerator();

    @JSProperty
    void setGenerator(Uint8Array generator);

    @JSProperty
    Uint8Array getPrime();

    @JSProperty
    void setPrime(Uint8Array prime);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy