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

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

package js.web.webcrypto;

import org.teavm.jso.JSProperty;


public interface HmacKeyAlgorithm extends KeyAlgorithm {
    @JSProperty
    KeyAlgorithm getHash();

    @JSProperty
    void setHash(KeyAlgorithm hash);

    @JSProperty
    double getLength();

    @JSProperty
    void setLength(double length);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy