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

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

package js.web.webcrypto;

import js.lang.Any;
import org.teavm.jso.JSProperty;

import javax.annotation.Nullable;


public interface RsaOtherPrimesInfo extends Any {
    @JSProperty
    @Nullable
    String getD();

    @JSProperty
    void setD(String d);

    @JSProperty
    @Nullable
    String getR();

    @JSProperty
    void setR(String r);

    @JSProperty
    @Nullable
    String getT();

    @JSProperty
    void setT(String t);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy