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

com.ksyun.api.sdk.auth.ShaHmac1Singleton Maven / Gradle / Ivy

There is a newer version: 2.1.8
Show newest version
package com.ksyun.api.sdk.auth;

public enum ShaHmac1Singleton {
    INSTANCE;

    private ISigner signer;

    ShaHmac1Singleton() {
        signer = new ShaHmac1();
    }

    public ISigner getInstance() {
        return this.signer;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy