コード例 #1
0
        public IActionResult GetRSAKeys()
        {
            var result = _rsaService.GetRandomRSAKeys();

            return(Ok(result));
        }
コード例 #2
0
ファイル: RSAHub.cs プロジェクト: gaznoziy/RSA
        public async Task Connected()
        {
            var keys = _rsaService.GetRandomRSAKeys();

            await Clients.Caller.SendAsync("SendKeys", keys.PublicKey, keys.PrivateKey);
        }