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

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

package js.web.webcrypto;

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


public interface AesCtrParams extends Algorithm {
    @JSProperty
    BufferSource getCounter();

    @JSProperty
    void setCounter(BufferSource counter);

    @JSProperty
    int getLength();

    @JSProperty
    void setLength(int length);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy