- APNs 키 등록 API (POST /v1/in/service/{serviceCode}/apns)
- FCM 키 등록 API (POST /v1/in/service/{serviceCode}/fcm)
- 키 정보 조회 API (POST /v1/in/service/{serviceCode}/credentials)
- AES-256 암호화로 민감 정보 저장
- 조회 시 메타 정보만 반환 (Private Key 미노출)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
8 lines
170 B
C#
8 lines
170 B
C#
namespace SPMS.Application.Interfaces;
|
|
|
|
public interface ICredentialEncryptionService
|
|
{
|
|
string Encrypt(string plainText);
|
|
string Decrypt(string encryptedText);
|
|
}
|