├── .gitignore ├── DarpaQKD ├── .Alice1_Bob1_with_delays.txt.swp ├── Alice1_Bob1_with_delays.txt ├── Alice1_Bob1_with_delaysBright.txt ├── Alice1_Bob1_with_delaysBrightAttempt1.txt ├── Alice1_Bob1_with_delaysREBINNED.txt ├── LDPC_alice_ttags8.txt ├── LDPC_bob_ttags8.txt ├── bobCorrectedSystem └── bobCorrectedSystem.txt ├── Delays.py ├── ParityCheckMatrixGen.py ├── PrivacyAmplification.py ├── SW_prep.py ├── Secret_keys ├── alice_secret_key1.txt └── bob_secret_key1.txt ├── SlepianWolf.py ├── Statistics.py ├── System.py ├── entropy_calculator.py ├── libttag.so ├── ttag.py └── ttag_delays.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/.gitignore -------------------------------------------------------------------------------- /DarpaQKD/.Alice1_Bob1_with_delays.txt.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/DarpaQKD/.Alice1_Bob1_with_delays.txt.swp -------------------------------------------------------------------------------- /DarpaQKD/Alice1_Bob1_with_delays.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/DarpaQKD/Alice1_Bob1_with_delays.txt -------------------------------------------------------------------------------- /DarpaQKD/Alice1_Bob1_with_delaysBright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/DarpaQKD/Alice1_Bob1_with_delaysBright.txt -------------------------------------------------------------------------------- /DarpaQKD/Alice1_Bob1_with_delaysBrightAttempt1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/DarpaQKD/Alice1_Bob1_with_delaysBrightAttempt1.txt -------------------------------------------------------------------------------- /DarpaQKD/Alice1_Bob1_with_delaysREBINNED.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/DarpaQKD/Alice1_Bob1_with_delaysREBINNED.txt -------------------------------------------------------------------------------- /DarpaQKD/LDPC_alice_ttags8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/DarpaQKD/LDPC_alice_ttags8.txt -------------------------------------------------------------------------------- /DarpaQKD/LDPC_bob_ttags8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/DarpaQKD/LDPC_bob_ttags8.txt -------------------------------------------------------------------------------- /DarpaQKD/bobCorrectedSystem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DarpaQKD/bobCorrectedSystem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/DarpaQKD/bobCorrectedSystem.txt -------------------------------------------------------------------------------- /Delays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/Delays.py -------------------------------------------------------------------------------- /ParityCheckMatrixGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/ParityCheckMatrixGen.py -------------------------------------------------------------------------------- /PrivacyAmplification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/PrivacyAmplification.py -------------------------------------------------------------------------------- /SW_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/SW_prep.py -------------------------------------------------------------------------------- /Secret_keys/alice_secret_key1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/Secret_keys/alice_secret_key1.txt -------------------------------------------------------------------------------- /Secret_keys/bob_secret_key1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/Secret_keys/bob_secret_key1.txt -------------------------------------------------------------------------------- /SlepianWolf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/SlepianWolf.py -------------------------------------------------------------------------------- /Statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/Statistics.py -------------------------------------------------------------------------------- /System.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/System.py -------------------------------------------------------------------------------- /entropy_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/entropy_calculator.py -------------------------------------------------------------------------------- /libttag.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/libttag.so -------------------------------------------------------------------------------- /ttag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/ttag.py -------------------------------------------------------------------------------- /ttag_delays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwiatLab/full-qkd-system/HEAD/ttag_delays.py --------------------------------------------------------------------------------