This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| network_stuff:cryptography [2023/10/12 15:38] – created jotasandoku | network_stuff:cryptography [2024/12/19 21:25] (current) – jotasandoku | ||
|---|---|---|---|
| Line 54: | Line 54: | ||
| In NETSCALER: | In NETSCALER: | ||
| * Citrix NetScaler VPX: Create CSR and Install SSL Certificate. [[https:// | * Citrix NetScaler VPX: Create CSR and Install SSL Certificate. [[https:// | ||
| - | * Install Your SSL Certificate | + | * Install Your PKI certificate |
| \\ | \\ | ||
| In F5 BIG-IP: | In F5 BIG-IP: | ||
| Line 80: | Line 80: | ||
| * .asc is a signature file | * .asc is a signature file | ||
| * .csr This is a Certificate Signing Request. | * .csr This is a Certificate Signing Request. | ||
| + | * .cer files for certificates only. | ||
| * .pem Defined in RFC's 1421 through 1424, this is a container format (just the public certificate or may include an entire certificate chain including public key, private key, and root certificates | * .pem Defined in RFC's 1421 through 1424, this is a container format (just the public certificate or may include an entire certificate chain including public key, private key, and root certificates | ||
| * .key This is a PEM formatted file containing just the private-key | * .key This is a PEM formatted file containing just the private-key | ||
| Line 129: | Line 130: | ||
| {{: | {{: | ||
| \\ | \\ | ||
| - | Very succint | + | Very succinct |
| - | * e, d and n : very large positive integers | + | Components: |
| - | * Public Key Info: n,e,key-size(n size in bits) : public key encryption | + | |
| - | | + | * m: Your original message (converted to a number) |
| - | | + | * e: Public encryption exponent (usually 65537, which is 2^16 + 1) |
| + | * d: Private decryption key (kept secret) | ||
| + | * n: The modulus (also public) | ||
| + | |||
| + | encrypted = (message ^ e) mod n | ||
| + | decrypted = (encrypted ^ d) mod n | ||
| + | |||
| + | There' | ||
| + | | ||
| + | | ||
| + | - n being hard to factor means no one can recreate the blueprint, even though they can see the lock | ||
| [[https:// | [[https:// | ||
| Line 293: | Line 304: | ||
| update-ca-trust enable | update-ca-trust enable | ||
| update-ca-trust | update-ca-trust | ||
| + | | ||
| + | |||
| + | ---- | ||
| + | ==== CRYPTOGRAPHY IN MS WINDOWS ENVIRONMENTS ==== | ||
| + | [...] | ||
| + | |||
| + | * SCEP facilitates the certificate enrollment and renewal of certificates. | ||
| + | * SCEP is normally done by the MDM device | ||