From 745b67e5927561bb3afa374452e736ecf6d9b2f7 Mon Sep 17 00:00:00 2001 From: Bill Buchanan Date: Thu, 18 Feb 2021 21:52:04 +0000 Subject: [PATCH] Update README.md --- unit04_public_key/lab/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unit04_public_key/lab/README.md b/unit04_public_key/lab/README.md index 17aac0c..7f62ac9 100644 --- a/unit04_public_key/lab/README.md +++ b/unit04_public_key/lab/README.md @@ -489,8 +489,8 @@ key = RSA.generate(2048) binPrivKey = key.exportKey('PEM') binPubKey = key.publickey().exportKey('PEM') -print binPrivKey -print binPubKey +print (binPrivKey) +print (binPubKey) ```