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
// | |
// HibeeRSA.h | |
// | |
// Created by Ibrahim Lawal ([email protected]) on Feb/27/2016. | |
// | |
#import <Foundation/Foundation.h> | |
@interface HibeeRSA : NSObject | |
+ (nullable NSString *)encryptRSA:(nonnull NSString *)plainTextString; |
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
/** | |
* A java 1.6 ccompatible class that provides RSA encryption using a | |
* base64 encoded public key string. | |
* | |
* To encrypt, do | |
* Crypto.encrypt("Text to encrypt"); // returns base64 encoded string for encrypted data | |
* | |
* @author Ibrahim Lawal ([email protected]) | |
* @version 2016/02/29 | |
*/ |
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
<?php | |
class HttpException extends \Exception | |
{ | |
/** | |
* List of additional headers | |
* | |
* @var array | |
*/ | |
private $headers = array(); |
NewerOlder