This is a list of APIs you can use to build or power your app with fintech innovation in Mexico.
package main | |
import ( | |
"bytes" | |
"crypto/aes" | |
"crypto/cipher" | |
"crypto/rand" | |
"errors" | |
"io" | |
"io/ioutil" |
<?php | |
namespace App\Providers; | |
use Illuminate\Support\ServiceProvider; | |
use Aws\S3\S3Client; | |
use League\Flysystem\AwsS3v3\AwsS3Adapter; | |
use League\Flysystem\Filesystem; | |
use Storage; |
SSH keys provide a more secure way of logging into a virtual private server with SSH than using a password alone. While a password can eventually be cracked with a brute force attack, SSH keys are nearly impossible to decipher by brute force alone. Generating a key pair provides you with two long string of characters: a public and a private key. You can place the public key on any server, and then unlock it by connecting to it with a client that already has the private key. When the two match up, the system unlocks without the need for a password. You can increase security even more by protecting the private key with a passphrase.
https://www.digitalocean.com/community/tutorials/how-to-set-up-ssh-keys--2
The first step is to create the key pair on the client machine (there is a good chance that this will just be your computer):
<?php | |
require_once __DIR__.'/vendor/autoload.php'; | |
use Aws\Lambda\LambdaClient; | |
$client = LambdaClient::factory([ | |
'version' => 'latest', | |
// The region where you have created your Lambda | |
'region' => 'eu-west-1', |
package main | |
import ( | |
"bufio" | |
"log" | |
"os" | |
) | |
var concurrency = 100 |
<?php | |
// Example app consumer secret found in apps.twitter.com | |
const APP_CONSUMER_SECRET = 'z3ZX4v7mAAUGykl3EcmkqbartmuW8VFOOzCloLx9Q45P0hLrFu'; | |
// Example token provided by incoming GET request | |
$token = $_GET['crc_token']; | |
/** | |
* Creates a HMAC SHA-256 hash created from the app TOKEN and | |
* your app Consumer Secret. | |
* @param token the token provided by the incoming GET request |
<?php | |
// Example app consumer secret found in apps.twitter.com | |
const APP_CONSUMER_SECRET = 'z3ZX4v7mAAUGykl3EcmkqbartmuW8VFOOzCloLx9Q45P0hLrFu'; | |
// Example token provided by incoming GET request | |
$token = $_GET['crc_token']; | |
/** | |
* Creates a HMAC SHA-256 hash created from the app TOKEN and | |
* your app Consumer Secret. | |
* @param token the token provided by the incoming GET request |