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| [ req ] | |
| default_bits = 2048 | |
| distinguished_name = req_distinguished_name | |
| attributes = req_attributes | |
| prompt = no | |
| [ req_distinguished_name ] | |
| C = MX | |
| ST = VE | |
| L = XL |
| #!/bin/bash | |
| DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) | |
| ORGNAME=mytestorg | |
| HOSTNAME=$(hostname -s) | |
| KEY_LENGTH=4096 | |
| DIGEST=sha512 | |
| DAYS_VALID=9999 |
| /** | |
| * Override React Table pagination component to be able to control Previous/Next | |
| */ | |
| import React, { Component } from 'react' | |
| import classnames from 'classnames' | |
| const defaultButton = props => ( | |
| <button type="button" {...props} className="-btn"> | |
| {props.children} |