com.alipay.api.internal.util.encrypt.Encrypt 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-2021 All Rights Reserved.
*/
package com.alipay.api.internal.util.encrypt;
import com.alipay.api.AlipayApiException;
/**
* @author zts
* @version : Encrypt.java, v 0.1 2021年06月23日 3:53 PM zts Exp $
*/
public interface Encrypt {
String encrypt(String content, String key, String charset) throws AlipayApiException;
String decrypt(String content, String key, String charset) throws AlipayApiException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy