Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096| //CareerCup 1.4 | |
| //by edussx | |
| #include <string> | |
| using std::string; | |
| string spaceReplacer(const string s) | |
| { | |
| string new_string; | |
| for (int i = 0; i < s.size(); i++) |
| //CareerCup 1.3 | |
| //by edussx | |
| #include <string> | |
| using std::string; | |
| //sort a string, return the sorted string | |
| //not an efficient sorting algorithm, though | |
| string sort(const string& str) | |
| { |
| //CareerCup 1.1 | |
| //by edussx | |
| #include <string> | |
| //assume the given string is a c++ string | |
| bool ifUnique(std::string s) | |
| { | |
| for(int i = 0; i < s.size()-1; i++) | |
| { | |
| for (int j = i+1 ; j < s.size(); j++) |