This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Here you can find full description: https://thetial.com/rsa-encryption-and-decryption-net-core/ | |
using System; | |
using System.IO; | |
using System.Text; | |
using System.Collections.Generic; | |
using Org.BouncyCastle.Crypto; | |
using Org.BouncyCastle.Crypto.Encodings; | |
using Org.BouncyCastle.Crypto.Engines; | |
using Org.BouncyCastle.OpenSsl; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* famous-angular - Bring structure to your Famo.us apps with the power of AngularJS. Famo.us/Angular integrates seamlessly with existing Angular and Famo.us apps. | |
* @version v0.0.16 | |
* @link https://github.com/Famous/famous-angular | |
* @license MPL v2.0 | |
*/ | |
'use strict'; | |
// Put angular bootstrap on hold | |
window.name = "NG_DEFER_BOOTSTRAP!" + window.name; |