com.alipay.api.DefaultSigner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
/**
* Alipay.com Inc. Copyright (c) 2004-2018 All Rights Reserved.
*/
package com.alipay.api;
import com.alipay.api.internal.util.AlipaySignature;
/**
* @author liuqun.lq
* @version $Id: DefaultSigner.java, v 0.1 12:02 liuqun.lq Exp $
*/
public class DefaultSigner implements Signer {
private String privateKey;
public DefaultSigner(String privateKey) {
this.privateKey = privateKey;
}
public String sign(String sourceContent, String signType, String charset) {
String sign = null;
try {
sign = AlipaySignature.rsaSign(sourceContent, this.privateKey, charset, signType);
} catch (AlipayApiException e) {
throw new RuntimeException(e);
}
return sign;
}
/**
* Getter method for property privateKey.
*
* @return property value of privateKey
*/
public String getPrivateKey() {
return privateKey;
}
/**
* Setter method for property privateKey.
*
* @param privateKey value to be assigned to property privateKey
*/
public void setPrivateKey(String privateKey) {
this.privateKey = privateKey;
}
}