
com.aliyuncs.auth.ShaHmac1Singleton Maven / Gradle / Ivy
The newest version!
package com.aliyuncs.auth;
/**
* Created by hi.yan.li on 2016/4/1.
*/
public enum ShaHmac1Singleton {
INSTANCE;
private ISigner signer;
ShaHmac1Singleton() {
signer = new ShaHmac1();
}
public ISigner getInstance() {
return this.signer;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy