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

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

package js.web.webcrypto;

import js.lang.Unknown;
import js.web.dom.BufferSource;
import org.teavm.jso.JSProperty;


public interface HkdfCtrParams extends Algorithm {
    @JSProperty
    BufferSource getContext();

    @JSProperty
    void setContext(BufferSource context);

    @JSProperty
    Unknown getHash();

    @JSProperty
    void setHash(String hash);

    @JSProperty
    void setHash(Algorithm hash);

    @JSProperty
    BufferSource getLabel();

    @JSProperty
    void setLabel(BufferSource label);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy