This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| network_stuff:cryptography [2024/12/16 12:44] – jotasandoku | network_stuff:cryptography [2024/12/19 21:25] (current) – jotasandoku | ||
|---|---|---|---|
| Line 130: | 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 297: | Line 307: | ||
| ---- | ---- | ||
| + | ==== CRYPTOGRAPHY IN MS WINDOWS ENVIRONMENTS ==== | ||
| + | [...] | ||
| + | * SCEP facilitates the certificate enrollment and renewal of certificates. | ||
| + | * SCEP is normally done by the MDM device | ||