com.ksyun.api.sdk.auth.ShaHmac1Singleton Maven / Gradle / Ivy
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