Live data from Hacker News

Create QR codes in Excel

blog.ambor.com

1–8 of 8 posts

Re: Create QR codes in Excel

#2
The way that the author uses pure Excel formulas (no VBA or macros) to compute a QR Code from scratch is similar to how I used pure Excel to compute ciphers:

* AES cipher internals in Excel: https://www.nayuki.io/page/aes-cipher-internals-in-excel

* DES cipher internals in Excel: https://www.nayuki.io/page/des-cipher-internals-in-excel

Re: Create QR codes in Excel

#3
(Pure) Excel is a form of dataflow programming --- the sequencing is implicit, but the flow of values is explicit. For algorithms that don't have arbitrary input-dependent looping, it is relatively easy to implement.

Re: Create QR codes in Excel

#5
post #2

The way that the author uses pure Excel formulas (no VBA or macros) to compute a QR Code from scratch is similar to how I used pure Excel to compute ciphers: * AES cipher internals in Excel: https://www.nayuki.io/page/aes-cipher-internals-in-excel * DES cipher internals in Excel: https://www.nayuki.io/page/des-cipher-internals-in-excel

That's really cool. I've been wanting to delve into the inner workings of ciphers for some time and I think this will make it easier.

Re: Create QR codes in Excel

#7
post #2

The way that the author uses pure Excel formulas (no VBA or macros) to compute a QR Code from scratch is similar to how I used pure Excel to compute ciphers: * AES cipher internals in Excel: https://www.nayuki.io/page/aes-cipher-internals-in-excel * DES cipher internals in Excel: https://www.nayuki.io/page/des-cipher-internals-in-excel

That's really cool. I've been wanting to delve into the inner workings of ciphers for some time and I think this will make it easier.

Thanks! I have another piece of work that shows the internal computations. I implemented hashes and cipher in short Python code. You can insert debugging prints easily to show the intermediate values. https://www.nayuki.io/page/cryptographic-primitives-in-plain...

Re: Create QR codes in Excel

#8
post #2

The way that the author uses pure Excel formulas (no VBA or macros) to compute a QR Code from scratch is similar to how I used pure Excel to compute ciphers: * AES cipher internals in Excel: https://www.nayuki.io/page/aes-cipher-internals-in-excel * DES cipher internals in Excel: https://www.nayuki.io/page/des-cipher-internals-in-excel

[deleted]