package com.qianwen.core.api.crypto.bean; import com.qianwen.core.api.crypto.enums.CryptoType; /* loaded from: blade-starter-api-crypto-9.3.0.0-SNAPSHOT.jar:org/springblade/core/api/crypto/bean/CryptoInfoBean.class */ public class CryptoInfoBean { private final CryptoType type; private final String secretKey; public CryptoInfoBean(final CryptoType type, final String secretKey) { this.type = type; this.secretKey = secretKey; } public CryptoType getType() { return this.type; } public String getSecretKey() { return this.secretKey; } }