PEM sample file
pem_fullchain_server_bundle_sample.pem
4.2 KB
application/pem-certificate-chain
SHA256 verified
File details
Filename
pem_fullchain_server_bundle_sample.pemSize4.2 KB (4337 bytes)
MIME type
application/pem-certificate-chainExtension
.pemSHA256
6227dbc67782de69d70879ee45936330f6e4bc3a4271143cb698e9d460590e50Download commands
Use in scripts and tests
curl -L -o pem_fullchain_server_bundle_sample.pem \
https://samplefile.com/samples/download/certificate/pem/pem_fullchain_server_bundle_sample.pem/
wget -O pem_fullchain_server_bundle_sample.pem \
https://samplefile.com/samples/download/certificate/pem/pem_fullchain_server_bundle_sample.pem/
import requests
url = "https://samplefile.com/samples/download/certificate/pem/pem_fullchain_server_bundle_sample.pem/"
resp = requests.get(url)
with open("pem_fullchain_server_bundle_sample.pem", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/certificate/pem/pem_fullchain_server_bundle_sample.pem/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("pem_fullchain_server_bundle_sample.pem", buf);
# Download and verify SHA256
curl -L -o pem_fullchain_server_bundle_sample.pem https://samplefile.com/samples/download/certificate/pem/pem_fullchain_server_bundle_sample.pem/
echo "6227dbc67782de69d70879ee45936330f6e4bc3a4271143cb698e9d460590e50 pem_fullchain_server_bundle_sample.pem" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/certificate/pem/pem_fullchain_server_bundle_sample.pem/").content
assert hashlib.sha256(data).hexdigest() == "6227dbc67782de69d70879ee45936330f6e4bc3a4271143cb698e9d460590e50"
More PEM files
Other PEM Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
pem_ca_chain_bundle_sample.pem |
2.7 KB | c5ea8207b7bf9f1b… |
Download |
pem_client_identity_bundle_sample.pem |
3.2 KB | fac5be54309b00f0… |
Download |
pem_sample_file_1MB.pem |
1.0 MB | a4e55525d7829e7b… |
Download |
pem_sample_file_200KB.pem |
200.0 KB | 60f65cb938b67f38… |
Download |
pem_sample_file_500KB.pem |
500.0 KB | 59774141e85eceed… |
Download |
pem_sample_file_50KB.pem |
50.0 KB | d34ab335f7a67695… |
Download |