最近筹备一场CTF比赛发现了一道关于RSA解密的题如下: #小明得到了一个 RSA 加密信息,你能帮他解开吗? n = 41069065654959614597750207738698085798765257876378561837894254544512565197793 c = 27990707239527629138352696377606718299992092729307910015562504696905353450041 e = 11 这道题主要考察了参赛选手对RSA加密原理的理解
using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Security.Cryptography; using System.Security.Cryptography.X509Certificates; namespace API.Tools { /// <summary> /// 类名:RSAFromPkcs8 /// 功能:RSA解密.签名.验签 /