ShopPlatform.Web 1.0.0.0
농산물, 소프트웨어 라이선스와 개발 용역을 직접 판매하는 CodeMaru 직영 쇼핑몰입니다.
로딩중...
검색중...
일치하는것 없음
PaymentKeyProtector.cs
이 파일의 문서화 페이지로 가기
1using Microsoft.AspNetCore.DataProtection;
2
4
13public sealed class PaymentKeyProtector
14{
23 private readonly IDataProtector _protector;
24
41 public PaymentKeyProtector(IDataProtectionProvider provider)
42 => _protector = provider.CreateProtector("ShopPlatform.PaymentKeys");
43
68 public string Protect(string plainText) => _protector.Protect(plainText);
69
94 public string? Unprotect(string? cipherText)
95 {
96 if (string.IsNullOrEmpty(cipherText)) return null;
97 try { return _protector.Unprotect(cipherText); }
98 catch { return null; }
99 }
100}
PaymentKeyProtector(IDataProtectionProvider provider)