├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── TODO ├── cli ├── CMakeLists.txt ├── main.cpp ├── modules │ ├── CMakeLists.txt │ ├── decrypt_pka.h │ ├── decrypt_sym.h │ ├── encrypt_pka.h │ ├── encrypt_sym.h │ ├── extract_public.h │ ├── fingerprint.h │ ├── generate_keypair.h │ ├── generate_revoke_key_cert.h │ ├── generate_revoke_subkey_cert.h │ ├── generate_revoke_uid_cert.h │ ├── list.h │ ├── module.cpp │ ├── module.h │ ├── modules.h │ ├── revoke_primary_key.h │ ├── revoke_subkey.h │ ├── revoke_uid.h │ ├── revoke_with_cert.h │ ├── show.h │ ├── show_cleartext_signature.h │ ├── sign_cleartext_signature.h │ ├── sign_detached_signature.h │ ├── sign_file.h │ ├── sign_primary_key.h │ ├── sign_subkey.h │ ├── sign_timestamp.h │ ├── template │ ├── verify_cleartext_signature.h │ ├── verify_detached_signature.h │ ├── verify_file.h │ ├── verify_primary_key.h │ ├── verify_revoke.h │ └── verify_timestamp.h └── tests │ ├── CMakeLists.txt │ └── modules │ ├── CMakeLists.txt │ ├── fingerprint.cpp │ └── module.cpp ├── contrib ├── OpenPGP.pc.in ├── cmake │ ├── FindGMP.cmake │ ├── GoogleTest.txt.in │ └── enable_cxx_compiler_flag_if_supported.cmake ├── lcov │ └── clang.sh └── qt │ ├── .gitignore │ ├── OpenPGP.pri │ ├── dynamic.pro │ ├── example.pro │ ├── src.pri │ └── static.pro ├── doc ├── An Advanced Introduction to GnuPG.pdf ├── rfc1991.pdf ├── rfc2440.pdf ├── rfc4880.pdf └── rfc5581.pdf ├── include ├── CMakeLists.txt ├── CleartextSignature.h ├── Compress │ ├── CMakeLists.txt │ ├── Compress.h │ ├── pgpbzip2.h │ └── pgpzlib.h ├── DetachedSignature.h ├── Encryptions │ ├── AES.h │ ├── AES_Const.h │ ├── Blowfish.h │ ├── Blowfish_Const.h │ ├── CAST128.h │ ├── CAST128_Const.h │ ├── CAST_Const.h │ ├── CMakeLists.txt │ ├── Camellia.h │ ├── Camellia_Const.h │ ├── DES.h │ ├── DES_Const.h │ ├── Encryptions.h │ ├── IDEA.h │ ├── SymAlg.h │ ├── TDES.h │ ├── Twofish.h │ └── Twofish_Const.h ├── Hashes │ ├── Alg.h │ ├── CMakeLists.txt │ ├── Hashes.h │ ├── MD5.h │ ├── MerkleDamgard.h │ ├── OpenSSL │ │ ├── CMakeLists.txt │ │ ├── MD5.h │ │ ├── RIPEMD160.h │ │ ├── SHA1.h │ │ ├── SHA224.h │ │ ├── SHA256.h │ │ ├── SHA384.h │ │ └── SHA512.h │ ├── RIPEMD160.h │ ├── SHA1.h │ ├── SHA224.h │ ├── SHA256.h │ ├── SHA384.h │ ├── SHA512.h │ └── Unsafe │ │ ├── CMakeLists.txt │ │ ├── MD5.h │ │ ├── MD5_Const.h │ │ ├── RIPEMD160.h │ │ ├── RIPEMD160_Const.h │ │ ├── RIPEMD_Const.h │ │ ├── SHA1.h │ │ ├── SHA224.h │ │ ├── SHA256.h │ │ ├── SHA256_Const.h │ │ ├── SHA2_Functions.h │ │ ├── SHA384.h │ │ ├── SHA512.h │ │ └── SHA512_Const.h ├── Key.h ├── Message.h ├── Misc │ ├── CMakeLists.txt │ ├── CRC-24.h │ ├── Length.h │ ├── PKCS1.h │ ├── cfb.h │ ├── mpi.h │ ├── pgptime.h │ ├── radix64.h │ ├── s2k.h │ ├── sigcalc.h │ └── sigtypes.h ├── OpenPGP.h ├── PGP.h ├── PKA │ ├── CMakeLists.txt │ ├── DSA.h │ ├── ElGamal.h │ ├── PKA.h │ ├── PKAs.h │ └── RSA.h ├── Packets │ ├── CMakeLists.txt │ ├── Key.h │ ├── Packet.h │ ├── Packets.h │ ├── Partial.h │ ├── PartialBodyLengthEnums.h │ ├── Subpacket.h │ ├── Tag0.h │ ├── Tag1.h │ ├── Tag10.h │ ├── Tag11.h │ ├── Tag12.h │ ├── Tag13.h │ ├── Tag14.h │ ├── Tag17.h │ ├── Tag17 │ │ ├── CMakeLists.txt │ │ ├── Sub1.h │ │ ├── Subpacket.h │ │ └── Subpackets.h │ ├── Tag18.h │ ├── Tag19.h │ ├── Tag2.h │ ├── Tag2 │ │ ├── CMakeLists.txt │ │ ├── Sub0.h │ │ ├── Sub1.h │ │ ├── Sub10.h │ │ ├── Sub11.h │ │ ├── Sub12.h │ │ ├── Sub13.h │ │ ├── Sub14.h │ │ ├── Sub15.h │ │ ├── Sub16.h │ │ ├── Sub17.h │ │ ├── Sub18.h │ │ ├── Sub19.h │ │ ├── Sub2.h │ │ ├── Sub20.h │ │ ├── Sub21.h │ │ ├── Sub22.h │ │ ├── Sub23.h │ │ ├── Sub24.h │ │ ├── Sub25.h │ │ ├── Sub26.h │ │ ├── Sub27.h │ │ ├── Sub28.h │ │ ├── Sub29.h │ │ ├── Sub3.h │ │ ├── Sub30.h │ │ ├── Sub31.h │ │ ├── Sub32.h │ │ ├── Sub33.h │ │ ├── Sub4.h │ │ ├── Sub5.h │ │ ├── Sub6.h │ │ ├── Sub7.h │ │ ├── Sub8.h │ │ ├── Sub9.h │ │ ├── Subpacket.h │ │ └── Subpackets.h │ ├── Tag3.h │ ├── Tag4.h │ ├── Tag5.h │ ├── Tag6.h │ ├── Tag60.h │ ├── Tag61.h │ ├── Tag62.h │ ├── Tag63.h │ ├── Tag7.h │ ├── Tag8.h │ ├── Tag9.h │ └── User.h ├── RNG │ ├── BBS.h │ ├── CMakeLists.txt │ ├── RAND_bytes.h │ └── RNGs.h ├── RevocationCertificate.h ├── common │ ├── CMakeLists.txt │ ├── HumanReadable.h │ ├── Status.h │ ├── compiler.h │ ├── cryptomath.h │ └── includes.h ├── decrypt.h ├── encrypt.h ├── keygen.h ├── revoke.h ├── sign.h └── verify.h ├── src ├── CMakeLists.txt ├── CleartextSignature.cpp ├── Compress │ ├── CMakeLists.txt │ ├── Compress.cpp │ ├── pgpbzip2.cpp │ └── pgpzlib.cpp ├── DetachedSignature.cpp ├── Encryptions │ ├── AES.cpp │ ├── Blowfish.cpp │ ├── CAST128.cpp │ ├── CMakeLists.txt │ ├── Camellia.cpp │ ├── DES.cpp │ ├── Encryptions.cpp │ ├── IDEA.cpp │ ├── SymAlg.cpp │ ├── TDES.cpp │ └── Twofish.cpp ├── Hashes │ ├── Alg.cpp │ ├── CMakeLists.txt │ ├── Hashes.cpp │ ├── MerkleDamgard.cpp │ ├── OpenSSL │ │ ├── CMakeLists.txt │ │ ├── MD5.cpp │ │ ├── RIPEMD160.cpp │ │ ├── SHA1.cpp │ │ ├── SHA224.cpp │ │ ├── SHA256.cpp │ │ ├── SHA384.cpp │ │ └── SHA512.cpp │ └── Unsafe │ │ ├── CMakeLists.txt │ │ ├── MD5.cpp │ │ ├── RIPEMD160.cpp │ │ ├── SHA1.cpp │ │ ├── SHA224.cpp │ │ ├── SHA256.cpp │ │ ├── SHA2_Functions.cpp │ │ ├── SHA384.cpp │ │ └── SHA512.cpp ├── Key.cpp ├── Message.cpp ├── Misc │ ├── CMakeLists.txt │ ├── CRC-24.cpp │ ├── Length.cpp │ ├── PKCS1.cpp │ ├── cfb.cpp │ ├── mpi.cpp │ ├── pgptime.cpp │ ├── radix64.cpp │ ├── s2k.cpp │ ├── sigcalc.cpp │ └── sigtypes.cpp ├── PGP.cpp ├── PKA │ ├── CMakeLists.txt │ ├── DSA.cpp │ ├── ElGamal.cpp │ ├── PKAs.cpp │ └── RSA.cpp ├── Packets │ ├── CMakeLists.txt │ ├── Key.cpp │ ├── Packet.cpp │ ├── Partial.cpp │ ├── Subpacket.cpp │ ├── Tag0.cpp │ ├── Tag1.cpp │ ├── Tag10.cpp │ ├── Tag11.cpp │ ├── Tag12.cpp │ ├── Tag13.cpp │ ├── Tag14.cpp │ ├── Tag17.cpp │ ├── Tag17 │ │ ├── CMakeLists.txt │ │ ├── Sub1.cpp │ │ └── Subpacket.cpp │ ├── Tag18.cpp │ ├── Tag19.cpp │ ├── Tag2.cpp │ ├── Tag2 │ │ ├── CMakeLists.txt │ │ ├── Sub0.cpp │ │ ├── Sub1.cpp │ │ ├── Sub10.cpp │ │ ├── Sub11.cpp │ │ ├── Sub12.cpp │ │ ├── Sub13.cpp │ │ ├── Sub14.cpp │ │ ├── Sub15.cpp │ │ ├── Sub16.cpp │ │ ├── Sub17.cpp │ │ ├── Sub18.cpp │ │ ├── Sub19.cpp │ │ ├── Sub2.cpp │ │ ├── Sub20.cpp │ │ ├── Sub21.cpp │ │ ├── Sub22.cpp │ │ ├── Sub23.cpp │ │ ├── Sub24.cpp │ │ ├── Sub25.cpp │ │ ├── Sub26.cpp │ │ ├── Sub27.cpp │ │ ├── Sub28.cpp │ │ ├── Sub29.cpp │ │ ├── Sub3.cpp │ │ ├── Sub30.cpp │ │ ├── Sub31.cpp │ │ ├── Sub32.cpp │ │ ├── Sub33.cpp │ │ ├── Sub4.cpp │ │ ├── Sub5.cpp │ │ ├── Sub6.cpp │ │ ├── Sub7.cpp │ │ ├── Sub8.cpp │ │ ├── Sub9.cpp │ │ └── Subpacket.cpp │ ├── Tag3.cpp │ ├── Tag4.cpp │ ├── Tag5.cpp │ ├── Tag6.cpp │ ├── Tag60.cpp │ ├── Tag61.cpp │ ├── Tag62.cpp │ ├── Tag63.cpp │ ├── Tag7.cpp │ ├── Tag8.cpp │ ├── Tag9.cpp │ └── User.cpp ├── RNG │ ├── BBS.cpp │ ├── CMakeLists.txt │ └── RAND_bytes.cpp ├── RevocationCertificate.cpp ├── common │ ├── CMakeLists.txt │ ├── HumanReadable.cpp │ └── includes.cpp ├── decrypt.cpp ├── encrypt.cpp ├── keygen.cpp ├── revoke.cpp ├── sign.cpp └── verify.cpp └── tests ├── CMakeLists.txt ├── Compress ├── CMakeLists.txt └── compress.cpp ├── Encryptions ├── CMakeLists.txt ├── aes.cpp ├── blowfish.cpp ├── camellia.cpp ├── cast128.cpp ├── des.cpp ├── idea.cpp ├── testvectors │ ├── aes │ │ ├── aesecbgfsbox128.h │ │ ├── aesecbgfsbox192.h │ │ ├── aesecbgfsbox256.h │ │ ├── aesecbsbox128.h │ │ ├── aesecbsbox192.h │ │ ├── aesecbsbox256.h │ │ ├── aesecbvarkey128.h │ │ ├── aesecbvarkey192.h │ │ ├── aesecbvarkey256.h │ │ ├── aesecbvartxt128.h │ │ ├── aesecbvartxt192.h │ │ └── aesecbvartxt256.h │ ├── blowfish │ │ └── blowfishtestvectors.h │ ├── camellia │ │ └── camelliatestvectors.h │ ├── cast │ │ ├── cast128testvectors.h │ │ └── cast256testvectors.h │ ├── des │ │ ├── destestvectorsset1.h │ │ ├── destestvectorsset2.h │ │ ├── destestvectorsset3.h │ │ └── destestvectorsset4.h │ ├── gost │ │ └── gosttestvectors.h │ ├── idea │ │ ├── ideatestvectorsset1.h │ │ ├── ideatestvectorsset2.h │ │ ├── ideatestvectorsset3.h │ │ ├── ideatestvectorsset4.h │ │ ├── ideatestvectorsset5.h │ │ ├── ideatestvectorsset6.h │ │ ├── ideatestvectorsset7.h │ │ └── ideatestvectorsset8.h │ ├── misty1 │ │ ├── misty1testvectorsset1.h │ │ ├── misty1testvectorsset2.h │ │ ├── misty1testvectorsset3.h │ │ └── misty1testvectorsset4.h │ ├── plainkeycipher.h │ ├── rc │ │ ├── rc4testvectors.h │ │ ├── rc5testvectorspaper.h │ │ ├── rc5testvectorsset1.h │ │ ├── rc5testvectorsset2.h │ │ ├── rc5testvectorsset3.h │ │ ├── rc5testvectorsset4.h │ │ ├── rc6testvectorsset1.h │ │ ├── rc6testvectorsset2.h │ │ ├── rc6testvectorsset3.h │ │ └── rc6testvectorsset4.h │ ├── safer │ │ └── saferk64testvectors.h │ ├── seed │ │ ├── seedtestvectorsset1.h │ │ ├── seedtestvectorsset2.h │ │ ├── seedtestvectorsset3.h │ │ └── seedtestvectorsset4.h │ ├── skipjack │ │ ├── skipjacktestvectorsnist.h │ │ ├── skipjacktestvectorsset1.h │ │ ├── skipjacktestvectorsset2.h │ │ ├── skipjacktestvectorsset3.h │ │ └── skipjacktestvectorsset4.h │ ├── tdes │ │ ├── tripledesecbinvperm.h │ │ ├── tripledesecbpermop.h │ │ ├── tripledesecbsubtab.h │ │ ├── tripledesecbvarkey.h │ │ └── tripledesecbvartxt.h │ ├── tea │ │ └── teatestvectors.h │ ├── twofish │ │ ├── twofishecb_vk.h │ │ └── twofishecb_vt.h │ └── xtea │ │ └── xteatestvectors.h ├── tripledes.cpp └── twofish.cpp ├── Hashes ├── CMakeLists.txt ├── md5.cpp ├── ripemd160.cpp ├── sha1.cpp ├── sha224.cpp ├── sha256.cpp ├── sha384.cpp ├── sha512.cpp └── testvectors │ ├── md5 │ └── md5testvectors.h │ ├── ripemd │ └── ripemd160testvectors.h │ └── sha │ ├── sha1shortmsg.h │ ├── sha224shortmsg.h │ ├── sha256shortmsg.h │ ├── sha384shortmsg.h │ └── sha512shortmsg.h ├── Misc ├── CMakeLists.txt ├── Length.cpp ├── mpi.cpp ├── pgptime.cpp ├── radix64.cpp └── s2k.cpp ├── PKA ├── CMakeLists.txt ├── PKAs.cpp ├── dsa.cpp ├── elgamal.cpp ├── rsa.cpp └── testvectors │ ├── dsa │ └── dsasiggen.h │ └── rsa │ └── rsasiggen15_186-2.h ├── Packets ├── CMakeLists.txt ├── Packet.cpp ├── Partial.cpp ├── Subpacket.cpp ├── Tag0.cpp ├── Tag1.cpp ├── Tag10.cpp ├── Tag11.cpp ├── Tag12.cpp ├── Tag13.cpp ├── Tag14.cpp ├── Tag17.cpp ├── Tag17 │ ├── CMakeLists.txt │ └── Sub1.cpp ├── Tag18.cpp ├── Tag19.cpp ├── Tag2.cpp ├── Tag2 │ ├── CMakeLists.txt │ ├── Sub0.cpp │ ├── Sub1.cpp │ ├── Sub10.cpp │ ├── Sub11.cpp │ ├── Sub12.cpp │ ├── Sub13.cpp │ ├── Sub14.cpp │ ├── Sub15.cpp │ ├── Sub16.cpp │ ├── Sub17.cpp │ ├── Sub18.cpp │ ├── Sub19.cpp │ ├── Sub2.cpp │ ├── Sub20.cpp │ ├── Sub21.cpp │ ├── Sub22.cpp │ ├── Sub23.cpp │ ├── Sub24.cpp │ ├── Sub25.cpp │ ├── Sub26.cpp │ ├── Sub27.cpp │ ├── Sub28.cpp │ ├── Sub29.cpp │ ├── Sub3.cpp │ ├── Sub30.cpp │ ├── Sub31.cpp │ ├── Sub32.cpp │ ├── Sub33.cpp │ ├── Sub4.cpp │ ├── Sub5.cpp │ ├── Sub6.cpp │ ├── Sub7.cpp │ ├── Sub8.cpp │ └── Sub9.cpp ├── Tag3.cpp ├── Tag4.cpp ├── Tag5.cpp ├── Tag6.cpp ├── Tag60.cpp ├── Tag61.cpp ├── Tag62.cpp ├── Tag63.cpp ├── Tag7.cpp ├── Tag8.cpp └── Tag9.cpp ├── arm_key.h ├── cleartextsignature.cpp ├── common ├── CMakeLists.txt ├── HumanReadable.cpp └── includes.cpp ├── detachedsignature.cpp ├── extract_decrypted.h ├── gpg.cpp ├── key.cpp ├── message.cpp ├── pgp.cpp ├── read_pgp.h ├── revocationcertificate.cpp └── testvectors ├── gpg ├── Alicepri ├── Alicepub ├── clearsign ├── detached ├── encryptsign ├── pkaencrypted ├── pkaencryptednomdc ├── revoke ├── signature ├── symencrypted └── symencryptednomdc ├── msg.h └── pass.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/TODO -------------------------------------------------------------------------------- /cli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/CMakeLists.txt -------------------------------------------------------------------------------- /cli/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/main.cpp -------------------------------------------------------------------------------- /cli/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/CMakeLists.txt -------------------------------------------------------------------------------- /cli/modules/decrypt_pka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/decrypt_pka.h -------------------------------------------------------------------------------- /cli/modules/decrypt_sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/decrypt_sym.h -------------------------------------------------------------------------------- /cli/modules/encrypt_pka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/encrypt_pka.h -------------------------------------------------------------------------------- /cli/modules/encrypt_sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/encrypt_sym.h -------------------------------------------------------------------------------- /cli/modules/extract_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/extract_public.h -------------------------------------------------------------------------------- /cli/modules/fingerprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/fingerprint.h -------------------------------------------------------------------------------- /cli/modules/generate_keypair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/generate_keypair.h -------------------------------------------------------------------------------- /cli/modules/generate_revoke_key_cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/generate_revoke_key_cert.h -------------------------------------------------------------------------------- /cli/modules/generate_revoke_subkey_cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/generate_revoke_subkey_cert.h -------------------------------------------------------------------------------- /cli/modules/generate_revoke_uid_cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/generate_revoke_uid_cert.h -------------------------------------------------------------------------------- /cli/modules/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/list.h -------------------------------------------------------------------------------- /cli/modules/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/module.cpp -------------------------------------------------------------------------------- /cli/modules/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/module.h -------------------------------------------------------------------------------- /cli/modules/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/modules.h -------------------------------------------------------------------------------- /cli/modules/revoke_primary_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/revoke_primary_key.h -------------------------------------------------------------------------------- /cli/modules/revoke_subkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/revoke_subkey.h -------------------------------------------------------------------------------- /cli/modules/revoke_uid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/revoke_uid.h -------------------------------------------------------------------------------- /cli/modules/revoke_with_cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/revoke_with_cert.h -------------------------------------------------------------------------------- /cli/modules/show.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/show.h -------------------------------------------------------------------------------- /cli/modules/show_cleartext_signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/show_cleartext_signature.h -------------------------------------------------------------------------------- /cli/modules/sign_cleartext_signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/sign_cleartext_signature.h -------------------------------------------------------------------------------- /cli/modules/sign_detached_signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/sign_detached_signature.h -------------------------------------------------------------------------------- /cli/modules/sign_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/sign_file.h -------------------------------------------------------------------------------- /cli/modules/sign_primary_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/sign_primary_key.h -------------------------------------------------------------------------------- /cli/modules/sign_subkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/sign_subkey.h -------------------------------------------------------------------------------- /cli/modules/sign_timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/sign_timestamp.h -------------------------------------------------------------------------------- /cli/modules/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/template -------------------------------------------------------------------------------- /cli/modules/verify_cleartext_signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/verify_cleartext_signature.h -------------------------------------------------------------------------------- /cli/modules/verify_detached_signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/verify_detached_signature.h -------------------------------------------------------------------------------- /cli/modules/verify_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/verify_file.h -------------------------------------------------------------------------------- /cli/modules/verify_primary_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/verify_primary_key.h -------------------------------------------------------------------------------- /cli/modules/verify_revoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/verify_revoke.h -------------------------------------------------------------------------------- /cli/modules/verify_timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/modules/verify_timestamp.h -------------------------------------------------------------------------------- /cli/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/tests/CMakeLists.txt -------------------------------------------------------------------------------- /cli/tests/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/tests/modules/CMakeLists.txt -------------------------------------------------------------------------------- /cli/tests/modules/fingerprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/tests/modules/fingerprint.cpp -------------------------------------------------------------------------------- /cli/tests/modules/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/cli/tests/modules/module.cpp -------------------------------------------------------------------------------- /contrib/OpenPGP.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/contrib/OpenPGP.pc.in -------------------------------------------------------------------------------- /contrib/cmake/FindGMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/contrib/cmake/FindGMP.cmake -------------------------------------------------------------------------------- /contrib/cmake/GoogleTest.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/contrib/cmake/GoogleTest.txt.in -------------------------------------------------------------------------------- /contrib/cmake/enable_cxx_compiler_flag_if_supported.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/contrib/cmake/enable_cxx_compiler_flag_if_supported.cmake -------------------------------------------------------------------------------- /contrib/lcov/clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/contrib/lcov/clang.sh -------------------------------------------------------------------------------- /contrib/qt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/contrib/qt/.gitignore -------------------------------------------------------------------------------- /contrib/qt/OpenPGP.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/contrib/qt/OpenPGP.pri -------------------------------------------------------------------------------- /contrib/qt/dynamic.pro: -------------------------------------------------------------------------------- 1 | TARGET = OpenPGP 2 | TEMPLATE = lib 3 | 4 | include($$PWD/src.pri) 5 | 6 | -------------------------------------------------------------------------------- /contrib/qt/example.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/contrib/qt/example.pro -------------------------------------------------------------------------------- /contrib/qt/src.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/contrib/qt/src.pri -------------------------------------------------------------------------------- /contrib/qt/static.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/contrib/qt/static.pro -------------------------------------------------------------------------------- /doc/An Advanced Introduction to GnuPG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/doc/An Advanced Introduction to GnuPG.pdf -------------------------------------------------------------------------------- /doc/rfc1991.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/doc/rfc1991.pdf -------------------------------------------------------------------------------- /doc/rfc2440.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/doc/rfc2440.pdf -------------------------------------------------------------------------------- /doc/rfc4880.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/doc/rfc4880.pdf -------------------------------------------------------------------------------- /doc/rfc5581.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/doc/rfc5581.pdf -------------------------------------------------------------------------------- /include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/CMakeLists.txt -------------------------------------------------------------------------------- /include/CleartextSignature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/CleartextSignature.h -------------------------------------------------------------------------------- /include/Compress/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Compress/CMakeLists.txt -------------------------------------------------------------------------------- /include/Compress/Compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Compress/Compress.h -------------------------------------------------------------------------------- /include/Compress/pgpbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Compress/pgpbzip2.h -------------------------------------------------------------------------------- /include/Compress/pgpzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Compress/pgpzlib.h -------------------------------------------------------------------------------- /include/DetachedSignature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/DetachedSignature.h -------------------------------------------------------------------------------- /include/Encryptions/AES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/AES.h -------------------------------------------------------------------------------- /include/Encryptions/AES_Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/AES_Const.h -------------------------------------------------------------------------------- /include/Encryptions/Blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/Blowfish.h -------------------------------------------------------------------------------- /include/Encryptions/Blowfish_Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/Blowfish_Const.h -------------------------------------------------------------------------------- /include/Encryptions/CAST128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/CAST128.h -------------------------------------------------------------------------------- /include/Encryptions/CAST128_Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/CAST128_Const.h -------------------------------------------------------------------------------- /include/Encryptions/CAST_Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/CAST_Const.h -------------------------------------------------------------------------------- /include/Encryptions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/CMakeLists.txt -------------------------------------------------------------------------------- /include/Encryptions/Camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/Camellia.h -------------------------------------------------------------------------------- /include/Encryptions/Camellia_Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/Camellia_Const.h -------------------------------------------------------------------------------- /include/Encryptions/DES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/DES.h -------------------------------------------------------------------------------- /include/Encryptions/DES_Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/DES_Const.h -------------------------------------------------------------------------------- /include/Encryptions/Encryptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/Encryptions.h -------------------------------------------------------------------------------- /include/Encryptions/IDEA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/IDEA.h -------------------------------------------------------------------------------- /include/Encryptions/SymAlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/SymAlg.h -------------------------------------------------------------------------------- /include/Encryptions/TDES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/TDES.h -------------------------------------------------------------------------------- /include/Encryptions/Twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/Twofish.h -------------------------------------------------------------------------------- /include/Encryptions/Twofish_Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Encryptions/Twofish_Const.h -------------------------------------------------------------------------------- /include/Hashes/Alg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Alg.h -------------------------------------------------------------------------------- /include/Hashes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/CMakeLists.txt -------------------------------------------------------------------------------- /include/Hashes/Hashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Hashes.h -------------------------------------------------------------------------------- /include/Hashes/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/MD5.h -------------------------------------------------------------------------------- /include/Hashes/MerkleDamgard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/MerkleDamgard.h -------------------------------------------------------------------------------- /include/Hashes/OpenSSL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/OpenSSL/CMakeLists.txt -------------------------------------------------------------------------------- /include/Hashes/OpenSSL/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/OpenSSL/MD5.h -------------------------------------------------------------------------------- /include/Hashes/OpenSSL/RIPEMD160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/OpenSSL/RIPEMD160.h -------------------------------------------------------------------------------- /include/Hashes/OpenSSL/SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/OpenSSL/SHA1.h -------------------------------------------------------------------------------- /include/Hashes/OpenSSL/SHA224.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/OpenSSL/SHA224.h -------------------------------------------------------------------------------- /include/Hashes/OpenSSL/SHA256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/OpenSSL/SHA256.h -------------------------------------------------------------------------------- /include/Hashes/OpenSSL/SHA384.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/OpenSSL/SHA384.h -------------------------------------------------------------------------------- /include/Hashes/OpenSSL/SHA512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/OpenSSL/SHA512.h -------------------------------------------------------------------------------- /include/Hashes/RIPEMD160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/RIPEMD160.h -------------------------------------------------------------------------------- /include/Hashes/SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/SHA1.h -------------------------------------------------------------------------------- /include/Hashes/SHA224.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/SHA224.h -------------------------------------------------------------------------------- /include/Hashes/SHA256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/SHA256.h -------------------------------------------------------------------------------- /include/Hashes/SHA384.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/SHA384.h -------------------------------------------------------------------------------- /include/Hashes/SHA512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/SHA512.h -------------------------------------------------------------------------------- /include/Hashes/Unsafe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Unsafe/CMakeLists.txt -------------------------------------------------------------------------------- /include/Hashes/Unsafe/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Unsafe/MD5.h -------------------------------------------------------------------------------- /include/Hashes/Unsafe/MD5_Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Unsafe/MD5_Const.h -------------------------------------------------------------------------------- /include/Hashes/Unsafe/RIPEMD160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Unsafe/RIPEMD160.h -------------------------------------------------------------------------------- /include/Hashes/Unsafe/RIPEMD160_Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Unsafe/RIPEMD160_Const.h -------------------------------------------------------------------------------- /include/Hashes/Unsafe/RIPEMD_Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Unsafe/RIPEMD_Const.h -------------------------------------------------------------------------------- /include/Hashes/Unsafe/SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Unsafe/SHA1.h -------------------------------------------------------------------------------- /include/Hashes/Unsafe/SHA224.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Unsafe/SHA224.h -------------------------------------------------------------------------------- /include/Hashes/Unsafe/SHA256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Unsafe/SHA256.h -------------------------------------------------------------------------------- /include/Hashes/Unsafe/SHA256_Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Unsafe/SHA256_Const.h -------------------------------------------------------------------------------- /include/Hashes/Unsafe/SHA2_Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Unsafe/SHA2_Functions.h -------------------------------------------------------------------------------- /include/Hashes/Unsafe/SHA384.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Unsafe/SHA384.h -------------------------------------------------------------------------------- /include/Hashes/Unsafe/SHA512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Unsafe/SHA512.h -------------------------------------------------------------------------------- /include/Hashes/Unsafe/SHA512_Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Hashes/Unsafe/SHA512_Const.h -------------------------------------------------------------------------------- /include/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Key.h -------------------------------------------------------------------------------- /include/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Message.h -------------------------------------------------------------------------------- /include/Misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Misc/CMakeLists.txt -------------------------------------------------------------------------------- /include/Misc/CRC-24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Misc/CRC-24.h -------------------------------------------------------------------------------- /include/Misc/Length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Misc/Length.h -------------------------------------------------------------------------------- /include/Misc/PKCS1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Misc/PKCS1.h -------------------------------------------------------------------------------- /include/Misc/cfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Misc/cfb.h -------------------------------------------------------------------------------- /include/Misc/mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Misc/mpi.h -------------------------------------------------------------------------------- /include/Misc/pgptime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Misc/pgptime.h -------------------------------------------------------------------------------- /include/Misc/radix64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Misc/radix64.h -------------------------------------------------------------------------------- /include/Misc/s2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Misc/s2k.h -------------------------------------------------------------------------------- /include/Misc/sigcalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Misc/sigcalc.h -------------------------------------------------------------------------------- /include/Misc/sigtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Misc/sigtypes.h -------------------------------------------------------------------------------- /include/OpenPGP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/OpenPGP.h -------------------------------------------------------------------------------- /include/PGP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/PGP.h -------------------------------------------------------------------------------- /include/PKA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/PKA/CMakeLists.txt -------------------------------------------------------------------------------- /include/PKA/DSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/PKA/DSA.h -------------------------------------------------------------------------------- /include/PKA/ElGamal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/PKA/ElGamal.h -------------------------------------------------------------------------------- /include/PKA/PKA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/PKA/PKA.h -------------------------------------------------------------------------------- /include/PKA/PKAs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/PKA/PKAs.h -------------------------------------------------------------------------------- /include/PKA/RSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/PKA/RSA.h -------------------------------------------------------------------------------- /include/Packets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/CMakeLists.txt -------------------------------------------------------------------------------- /include/Packets/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Key.h -------------------------------------------------------------------------------- /include/Packets/Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Packet.h -------------------------------------------------------------------------------- /include/Packets/Packets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Packets.h -------------------------------------------------------------------------------- /include/Packets/Partial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Partial.h -------------------------------------------------------------------------------- /include/Packets/PartialBodyLengthEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/PartialBodyLengthEnums.h -------------------------------------------------------------------------------- /include/Packets/Subpacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Subpacket.h -------------------------------------------------------------------------------- /include/Packets/Tag0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag0.h -------------------------------------------------------------------------------- /include/Packets/Tag1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag1.h -------------------------------------------------------------------------------- /include/Packets/Tag10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag10.h -------------------------------------------------------------------------------- /include/Packets/Tag11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag11.h -------------------------------------------------------------------------------- /include/Packets/Tag12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag12.h -------------------------------------------------------------------------------- /include/Packets/Tag13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag13.h -------------------------------------------------------------------------------- /include/Packets/Tag14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag14.h -------------------------------------------------------------------------------- /include/Packets/Tag17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag17.h -------------------------------------------------------------------------------- /include/Packets/Tag17/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag17/CMakeLists.txt -------------------------------------------------------------------------------- /include/Packets/Tag17/Sub1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag17/Sub1.h -------------------------------------------------------------------------------- /include/Packets/Tag17/Subpacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag17/Subpacket.h -------------------------------------------------------------------------------- /include/Packets/Tag17/Subpackets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag17/Subpackets.h -------------------------------------------------------------------------------- /include/Packets/Tag18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag18.h -------------------------------------------------------------------------------- /include/Packets/Tag19.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag19.h -------------------------------------------------------------------------------- /include/Packets/Tag2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2.h -------------------------------------------------------------------------------- /include/Packets/Tag2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/CMakeLists.txt -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub0.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub1.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub10.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub11.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub12.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub13.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub14.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub15.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub16.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub17.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub18.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub19.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub19.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub2.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub20.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub21.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub22.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub22.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub23.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub24.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub25.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub26.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub27.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub27.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub28.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub28.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub29.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub29.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub3.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub30.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub31.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub32.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub33.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub4.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub5.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub6.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub7.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub8.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Sub9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Sub9.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Subpacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Subpacket.h -------------------------------------------------------------------------------- /include/Packets/Tag2/Subpackets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag2/Subpackets.h -------------------------------------------------------------------------------- /include/Packets/Tag3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag3.h -------------------------------------------------------------------------------- /include/Packets/Tag4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag4.h -------------------------------------------------------------------------------- /include/Packets/Tag5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag5.h -------------------------------------------------------------------------------- /include/Packets/Tag6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag6.h -------------------------------------------------------------------------------- /include/Packets/Tag60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag60.h -------------------------------------------------------------------------------- /include/Packets/Tag61.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag61.h -------------------------------------------------------------------------------- /include/Packets/Tag62.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag62.h -------------------------------------------------------------------------------- /include/Packets/Tag63.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag63.h -------------------------------------------------------------------------------- /include/Packets/Tag7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag7.h -------------------------------------------------------------------------------- /include/Packets/Tag8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag8.h -------------------------------------------------------------------------------- /include/Packets/Tag9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/Tag9.h -------------------------------------------------------------------------------- /include/Packets/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/Packets/User.h -------------------------------------------------------------------------------- /include/RNG/BBS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/RNG/BBS.h -------------------------------------------------------------------------------- /include/RNG/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/RNG/CMakeLists.txt -------------------------------------------------------------------------------- /include/RNG/RAND_bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/RNG/RAND_bytes.h -------------------------------------------------------------------------------- /include/RNG/RNGs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/RNG/RNGs.h -------------------------------------------------------------------------------- /include/RevocationCertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/RevocationCertificate.h -------------------------------------------------------------------------------- /include/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/common/CMakeLists.txt -------------------------------------------------------------------------------- /include/common/HumanReadable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/common/HumanReadable.h -------------------------------------------------------------------------------- /include/common/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/common/Status.h -------------------------------------------------------------------------------- /include/common/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/common/compiler.h -------------------------------------------------------------------------------- /include/common/cryptomath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/common/cryptomath.h -------------------------------------------------------------------------------- /include/common/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/common/includes.h -------------------------------------------------------------------------------- /include/decrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/decrypt.h -------------------------------------------------------------------------------- /include/encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/encrypt.h -------------------------------------------------------------------------------- /include/keygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/keygen.h -------------------------------------------------------------------------------- /include/revoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/revoke.h -------------------------------------------------------------------------------- /include/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/sign.h -------------------------------------------------------------------------------- /include/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/include/verify.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/CleartextSignature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/CleartextSignature.cpp -------------------------------------------------------------------------------- /src/Compress/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Compress/CMakeLists.txt -------------------------------------------------------------------------------- /src/Compress/Compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Compress/Compress.cpp -------------------------------------------------------------------------------- /src/Compress/pgpbzip2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Compress/pgpbzip2.cpp -------------------------------------------------------------------------------- /src/Compress/pgpzlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Compress/pgpzlib.cpp -------------------------------------------------------------------------------- /src/DetachedSignature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/DetachedSignature.cpp -------------------------------------------------------------------------------- /src/Encryptions/AES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Encryptions/AES.cpp -------------------------------------------------------------------------------- /src/Encryptions/Blowfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Encryptions/Blowfish.cpp -------------------------------------------------------------------------------- /src/Encryptions/CAST128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Encryptions/CAST128.cpp -------------------------------------------------------------------------------- /src/Encryptions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Encryptions/CMakeLists.txt -------------------------------------------------------------------------------- /src/Encryptions/Camellia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Encryptions/Camellia.cpp -------------------------------------------------------------------------------- /src/Encryptions/DES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Encryptions/DES.cpp -------------------------------------------------------------------------------- /src/Encryptions/Encryptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Encryptions/Encryptions.cpp -------------------------------------------------------------------------------- /src/Encryptions/IDEA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Encryptions/IDEA.cpp -------------------------------------------------------------------------------- /src/Encryptions/SymAlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Encryptions/SymAlg.cpp -------------------------------------------------------------------------------- /src/Encryptions/TDES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Encryptions/TDES.cpp -------------------------------------------------------------------------------- /src/Encryptions/Twofish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Encryptions/Twofish.cpp -------------------------------------------------------------------------------- /src/Hashes/Alg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/Alg.cpp -------------------------------------------------------------------------------- /src/Hashes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/CMakeLists.txt -------------------------------------------------------------------------------- /src/Hashes/Hashes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/Hashes.cpp -------------------------------------------------------------------------------- /src/Hashes/MerkleDamgard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/MerkleDamgard.cpp -------------------------------------------------------------------------------- /src/Hashes/OpenSSL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/OpenSSL/CMakeLists.txt -------------------------------------------------------------------------------- /src/Hashes/OpenSSL/MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/OpenSSL/MD5.cpp -------------------------------------------------------------------------------- /src/Hashes/OpenSSL/RIPEMD160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/OpenSSL/RIPEMD160.cpp -------------------------------------------------------------------------------- /src/Hashes/OpenSSL/SHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/OpenSSL/SHA1.cpp -------------------------------------------------------------------------------- /src/Hashes/OpenSSL/SHA224.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/OpenSSL/SHA224.cpp -------------------------------------------------------------------------------- /src/Hashes/OpenSSL/SHA256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/OpenSSL/SHA256.cpp -------------------------------------------------------------------------------- /src/Hashes/OpenSSL/SHA384.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/OpenSSL/SHA384.cpp -------------------------------------------------------------------------------- /src/Hashes/OpenSSL/SHA512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/OpenSSL/SHA512.cpp -------------------------------------------------------------------------------- /src/Hashes/Unsafe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/Unsafe/CMakeLists.txt -------------------------------------------------------------------------------- /src/Hashes/Unsafe/MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/Unsafe/MD5.cpp -------------------------------------------------------------------------------- /src/Hashes/Unsafe/RIPEMD160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/Unsafe/RIPEMD160.cpp -------------------------------------------------------------------------------- /src/Hashes/Unsafe/SHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/Unsafe/SHA1.cpp -------------------------------------------------------------------------------- /src/Hashes/Unsafe/SHA224.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/Unsafe/SHA224.cpp -------------------------------------------------------------------------------- /src/Hashes/Unsafe/SHA256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/Unsafe/SHA256.cpp -------------------------------------------------------------------------------- /src/Hashes/Unsafe/SHA2_Functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/Unsafe/SHA2_Functions.cpp -------------------------------------------------------------------------------- /src/Hashes/Unsafe/SHA384.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/Unsafe/SHA384.cpp -------------------------------------------------------------------------------- /src/Hashes/Unsafe/SHA512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Hashes/Unsafe/SHA512.cpp -------------------------------------------------------------------------------- /src/Key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Key.cpp -------------------------------------------------------------------------------- /src/Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Message.cpp -------------------------------------------------------------------------------- /src/Misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Misc/CMakeLists.txt -------------------------------------------------------------------------------- /src/Misc/CRC-24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Misc/CRC-24.cpp -------------------------------------------------------------------------------- /src/Misc/Length.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Misc/Length.cpp -------------------------------------------------------------------------------- /src/Misc/PKCS1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Misc/PKCS1.cpp -------------------------------------------------------------------------------- /src/Misc/cfb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Misc/cfb.cpp -------------------------------------------------------------------------------- /src/Misc/mpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Misc/mpi.cpp -------------------------------------------------------------------------------- /src/Misc/pgptime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Misc/pgptime.cpp -------------------------------------------------------------------------------- /src/Misc/radix64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Misc/radix64.cpp -------------------------------------------------------------------------------- /src/Misc/s2k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Misc/s2k.cpp -------------------------------------------------------------------------------- /src/Misc/sigcalc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Misc/sigcalc.cpp -------------------------------------------------------------------------------- /src/Misc/sigtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Misc/sigtypes.cpp -------------------------------------------------------------------------------- /src/PGP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/PGP.cpp -------------------------------------------------------------------------------- /src/PKA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/PKA/CMakeLists.txt -------------------------------------------------------------------------------- /src/PKA/DSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/PKA/DSA.cpp -------------------------------------------------------------------------------- /src/PKA/ElGamal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/PKA/ElGamal.cpp -------------------------------------------------------------------------------- /src/PKA/PKAs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/PKA/PKAs.cpp -------------------------------------------------------------------------------- /src/PKA/RSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/PKA/RSA.cpp -------------------------------------------------------------------------------- /src/Packets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/CMakeLists.txt -------------------------------------------------------------------------------- /src/Packets/Key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Key.cpp -------------------------------------------------------------------------------- /src/Packets/Packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Packet.cpp -------------------------------------------------------------------------------- /src/Packets/Partial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Partial.cpp -------------------------------------------------------------------------------- /src/Packets/Subpacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Subpacket.cpp -------------------------------------------------------------------------------- /src/Packets/Tag0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag0.cpp -------------------------------------------------------------------------------- /src/Packets/Tag1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag1.cpp -------------------------------------------------------------------------------- /src/Packets/Tag10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag10.cpp -------------------------------------------------------------------------------- /src/Packets/Tag11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag11.cpp -------------------------------------------------------------------------------- /src/Packets/Tag12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag12.cpp -------------------------------------------------------------------------------- /src/Packets/Tag13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag13.cpp -------------------------------------------------------------------------------- /src/Packets/Tag14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag14.cpp -------------------------------------------------------------------------------- /src/Packets/Tag17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag17.cpp -------------------------------------------------------------------------------- /src/Packets/Tag17/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag17/CMakeLists.txt -------------------------------------------------------------------------------- /src/Packets/Tag17/Sub1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag17/Sub1.cpp -------------------------------------------------------------------------------- /src/Packets/Tag17/Subpacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag17/Subpacket.cpp -------------------------------------------------------------------------------- /src/Packets/Tag18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag18.cpp -------------------------------------------------------------------------------- /src/Packets/Tag19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag19.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/CMakeLists.txt -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub0.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub1.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub10.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub11.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub12.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub13.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub14.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub15.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub16.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub17.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub18.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub19.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub2.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub20.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub21.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub22.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub22.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub23.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub24.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub25.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub26.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub26.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub27.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub27.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub28.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub28.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub29.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub29.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub3.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub30.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub31.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub31.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub32.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub33.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub4.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub5.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub6.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub7.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub8.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Sub9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Sub9.cpp -------------------------------------------------------------------------------- /src/Packets/Tag2/Subpacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag2/Subpacket.cpp -------------------------------------------------------------------------------- /src/Packets/Tag3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag3.cpp -------------------------------------------------------------------------------- /src/Packets/Tag4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag4.cpp -------------------------------------------------------------------------------- /src/Packets/Tag5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag5.cpp -------------------------------------------------------------------------------- /src/Packets/Tag6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag6.cpp -------------------------------------------------------------------------------- /src/Packets/Tag60.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag60.cpp -------------------------------------------------------------------------------- /src/Packets/Tag61.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag61.cpp -------------------------------------------------------------------------------- /src/Packets/Tag62.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag62.cpp -------------------------------------------------------------------------------- /src/Packets/Tag63.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag63.cpp -------------------------------------------------------------------------------- /src/Packets/Tag7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag7.cpp -------------------------------------------------------------------------------- /src/Packets/Tag8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag8.cpp -------------------------------------------------------------------------------- /src/Packets/Tag9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/Tag9.cpp -------------------------------------------------------------------------------- /src/Packets/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/Packets/User.cpp -------------------------------------------------------------------------------- /src/RNG/BBS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/RNG/BBS.cpp -------------------------------------------------------------------------------- /src/RNG/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/RNG/CMakeLists.txt -------------------------------------------------------------------------------- /src/RNG/RAND_bytes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/RNG/RAND_bytes.cpp -------------------------------------------------------------------------------- /src/RevocationCertificate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/RevocationCertificate.cpp -------------------------------------------------------------------------------- /src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/HumanReadable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/common/HumanReadable.cpp -------------------------------------------------------------------------------- /src/common/includes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/common/includes.cpp -------------------------------------------------------------------------------- /src/decrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/decrypt.cpp -------------------------------------------------------------------------------- /src/encrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/encrypt.cpp -------------------------------------------------------------------------------- /src/keygen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/keygen.cpp -------------------------------------------------------------------------------- /src/revoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/revoke.cpp -------------------------------------------------------------------------------- /src/sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/sign.cpp -------------------------------------------------------------------------------- /src/verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/src/verify.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Compress/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Compress/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Compress/compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Compress/compress.cpp -------------------------------------------------------------------------------- /tests/Encryptions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Encryptions/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/aes.cpp -------------------------------------------------------------------------------- /tests/Encryptions/blowfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/blowfish.cpp -------------------------------------------------------------------------------- /tests/Encryptions/camellia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/camellia.cpp -------------------------------------------------------------------------------- /tests/Encryptions/cast128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/cast128.cpp -------------------------------------------------------------------------------- /tests/Encryptions/des.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/des.cpp -------------------------------------------------------------------------------- /tests/Encryptions/idea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/idea.cpp -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/aes/aesecbgfsbox128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/aes/aesecbgfsbox128.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/aes/aesecbgfsbox192.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/aes/aesecbgfsbox192.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/aes/aesecbgfsbox256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/aes/aesecbgfsbox256.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/aes/aesecbsbox128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/aes/aesecbsbox128.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/aes/aesecbsbox192.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/aes/aesecbsbox192.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/aes/aesecbsbox256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/aes/aesecbsbox256.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/aes/aesecbvarkey128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/aes/aesecbvarkey128.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/aes/aesecbvarkey192.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/aes/aesecbvarkey192.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/aes/aesecbvarkey256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/aes/aesecbvarkey256.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/aes/aesecbvartxt128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/aes/aesecbvartxt128.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/aes/aesecbvartxt192.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/aes/aesecbvartxt192.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/aes/aesecbvartxt256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/aes/aesecbvartxt256.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/blowfish/blowfishtestvectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/blowfish/blowfishtestvectors.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/camellia/camelliatestvectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/camellia/camelliatestvectors.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/cast/cast128testvectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/cast/cast128testvectors.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/cast/cast256testvectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/cast/cast256testvectors.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/des/destestvectorsset1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/des/destestvectorsset1.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/des/destestvectorsset2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/des/destestvectorsset2.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/des/destestvectorsset3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/des/destestvectorsset3.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/des/destestvectorsset4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/des/destestvectorsset4.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/gost/gosttestvectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/gost/gosttestvectors.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/idea/ideatestvectorsset1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/idea/ideatestvectorsset1.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/idea/ideatestvectorsset2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/idea/ideatestvectorsset2.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/idea/ideatestvectorsset3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/idea/ideatestvectorsset3.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/idea/ideatestvectorsset4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/idea/ideatestvectorsset4.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/idea/ideatestvectorsset5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/idea/ideatestvectorsset5.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/idea/ideatestvectorsset6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/idea/ideatestvectorsset6.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/idea/ideatestvectorsset7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/idea/ideatestvectorsset7.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/idea/ideatestvectorsset8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/idea/ideatestvectorsset8.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/misty1/misty1testvectorsset1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/misty1/misty1testvectorsset1.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/misty1/misty1testvectorsset2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/misty1/misty1testvectorsset2.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/misty1/misty1testvectorsset3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/misty1/misty1testvectorsset3.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/misty1/misty1testvectorsset4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/misty1/misty1testvectorsset4.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/plainkeycipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/plainkeycipher.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/rc/rc4testvectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/rc/rc4testvectors.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/rc/rc5testvectorspaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/rc/rc5testvectorspaper.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/rc/rc5testvectorsset1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/rc/rc5testvectorsset1.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/rc/rc5testvectorsset2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/rc/rc5testvectorsset2.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/rc/rc5testvectorsset3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/rc/rc5testvectorsset3.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/rc/rc5testvectorsset4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/rc/rc5testvectorsset4.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/rc/rc6testvectorsset1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/rc/rc6testvectorsset1.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/rc/rc6testvectorsset2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/rc/rc6testvectorsset2.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/rc/rc6testvectorsset3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/rc/rc6testvectorsset3.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/rc/rc6testvectorsset4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/rc/rc6testvectorsset4.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/safer/saferk64testvectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/safer/saferk64testvectors.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/seed/seedtestvectorsset1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/seed/seedtestvectorsset1.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/seed/seedtestvectorsset2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/seed/seedtestvectorsset2.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/seed/seedtestvectorsset3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/seed/seedtestvectorsset3.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/seed/seedtestvectorsset4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/seed/seedtestvectorsset4.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/skipjack/skipjacktestvectorsnist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/skipjack/skipjacktestvectorsnist.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/skipjack/skipjacktestvectorsset1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/skipjack/skipjacktestvectorsset1.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/skipjack/skipjacktestvectorsset2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/skipjack/skipjacktestvectorsset2.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/skipjack/skipjacktestvectorsset3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/skipjack/skipjacktestvectorsset3.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/skipjack/skipjacktestvectorsset4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/skipjack/skipjacktestvectorsset4.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/tdes/tripledesecbinvperm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/tdes/tripledesecbinvperm.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/tdes/tripledesecbpermop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/tdes/tripledesecbpermop.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/tdes/tripledesecbsubtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/tdes/tripledesecbsubtab.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/tdes/tripledesecbvarkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/tdes/tripledesecbvarkey.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/tdes/tripledesecbvartxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/tdes/tripledesecbvartxt.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/tea/teatestvectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/tea/teatestvectors.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/twofish/twofishecb_vk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/twofish/twofishecb_vk.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/twofish/twofishecb_vt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/twofish/twofishecb_vt.h -------------------------------------------------------------------------------- /tests/Encryptions/testvectors/xtea/xteatestvectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/testvectors/xtea/xteatestvectors.h -------------------------------------------------------------------------------- /tests/Encryptions/tripledes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/tripledes.cpp -------------------------------------------------------------------------------- /tests/Encryptions/twofish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Encryptions/twofish.cpp -------------------------------------------------------------------------------- /tests/Hashes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Hashes/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Hashes/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Hashes/md5.cpp -------------------------------------------------------------------------------- /tests/Hashes/ripemd160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Hashes/ripemd160.cpp -------------------------------------------------------------------------------- /tests/Hashes/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Hashes/sha1.cpp -------------------------------------------------------------------------------- /tests/Hashes/sha224.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Hashes/sha224.cpp -------------------------------------------------------------------------------- /tests/Hashes/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Hashes/sha256.cpp -------------------------------------------------------------------------------- /tests/Hashes/sha384.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Hashes/sha384.cpp -------------------------------------------------------------------------------- /tests/Hashes/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Hashes/sha512.cpp -------------------------------------------------------------------------------- /tests/Hashes/testvectors/md5/md5testvectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Hashes/testvectors/md5/md5testvectors.h -------------------------------------------------------------------------------- /tests/Hashes/testvectors/ripemd/ripemd160testvectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Hashes/testvectors/ripemd/ripemd160testvectors.h -------------------------------------------------------------------------------- /tests/Hashes/testvectors/sha/sha1shortmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Hashes/testvectors/sha/sha1shortmsg.h -------------------------------------------------------------------------------- /tests/Hashes/testvectors/sha/sha224shortmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Hashes/testvectors/sha/sha224shortmsg.h -------------------------------------------------------------------------------- /tests/Hashes/testvectors/sha/sha256shortmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Hashes/testvectors/sha/sha256shortmsg.h -------------------------------------------------------------------------------- /tests/Hashes/testvectors/sha/sha384shortmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Hashes/testvectors/sha/sha384shortmsg.h -------------------------------------------------------------------------------- /tests/Hashes/testvectors/sha/sha512shortmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Hashes/testvectors/sha/sha512shortmsg.h -------------------------------------------------------------------------------- /tests/Misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Misc/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Misc/Length.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Misc/Length.cpp -------------------------------------------------------------------------------- /tests/Misc/mpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Misc/mpi.cpp -------------------------------------------------------------------------------- /tests/Misc/pgptime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Misc/pgptime.cpp -------------------------------------------------------------------------------- /tests/Misc/radix64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Misc/radix64.cpp -------------------------------------------------------------------------------- /tests/Misc/s2k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Misc/s2k.cpp -------------------------------------------------------------------------------- /tests/PKA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/PKA/CMakeLists.txt -------------------------------------------------------------------------------- /tests/PKA/PKAs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/PKA/PKAs.cpp -------------------------------------------------------------------------------- /tests/PKA/dsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/PKA/dsa.cpp -------------------------------------------------------------------------------- /tests/PKA/elgamal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/PKA/elgamal.cpp -------------------------------------------------------------------------------- /tests/PKA/rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/PKA/rsa.cpp -------------------------------------------------------------------------------- /tests/PKA/testvectors/dsa/dsasiggen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/PKA/testvectors/dsa/dsasiggen.h -------------------------------------------------------------------------------- /tests/PKA/testvectors/rsa/rsasiggen15_186-2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/PKA/testvectors/rsa/rsasiggen15_186-2.h -------------------------------------------------------------------------------- /tests/Packets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Packets/Packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Packet.cpp -------------------------------------------------------------------------------- /tests/Packets/Partial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Partial.cpp -------------------------------------------------------------------------------- /tests/Packets/Subpacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Subpacket.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag0.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag1.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag10.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag11.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag12.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag13.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag14.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag17.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag17/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag17/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Packets/Tag17/Sub1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag17/Sub1.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag18.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag19.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub0.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub1.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub10.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub11.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub12.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub13.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub14.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub15.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub16.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub17.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub18.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub19.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub2.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub20.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub21.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub22.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub22.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub23.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub24.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub25.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub26.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub26.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub27.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub27.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub28.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub28.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub29.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub29.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub3.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub30.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub31.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub31.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub32.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub33.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub4.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub5.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub6.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub7.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub8.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag2/Sub9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag2/Sub9.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag3.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag4.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag5.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag6.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag60.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag60.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag61.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag61.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag62.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag62.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag63.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag63.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag7.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag8.cpp -------------------------------------------------------------------------------- /tests/Packets/Tag9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/Packets/Tag9.cpp -------------------------------------------------------------------------------- /tests/arm_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/arm_key.h -------------------------------------------------------------------------------- /tests/cleartextsignature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/cleartextsignature.cpp -------------------------------------------------------------------------------- /tests/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/common/CMakeLists.txt -------------------------------------------------------------------------------- /tests/common/HumanReadable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/common/HumanReadable.cpp -------------------------------------------------------------------------------- /tests/common/includes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/common/includes.cpp -------------------------------------------------------------------------------- /tests/detachedsignature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/detachedsignature.cpp -------------------------------------------------------------------------------- /tests/extract_decrypted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/extract_decrypted.h -------------------------------------------------------------------------------- /tests/gpg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/gpg.cpp -------------------------------------------------------------------------------- /tests/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/key.cpp -------------------------------------------------------------------------------- /tests/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/message.cpp -------------------------------------------------------------------------------- /tests/pgp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/pgp.cpp -------------------------------------------------------------------------------- /tests/read_pgp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/read_pgp.h -------------------------------------------------------------------------------- /tests/revocationcertificate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/revocationcertificate.cpp -------------------------------------------------------------------------------- /tests/testvectors/gpg/Alicepri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/testvectors/gpg/Alicepri -------------------------------------------------------------------------------- /tests/testvectors/gpg/Alicepub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/testvectors/gpg/Alicepub -------------------------------------------------------------------------------- /tests/testvectors/gpg/clearsign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/testvectors/gpg/clearsign -------------------------------------------------------------------------------- /tests/testvectors/gpg/detached: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/testvectors/gpg/detached -------------------------------------------------------------------------------- /tests/testvectors/gpg/encryptsign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/testvectors/gpg/encryptsign -------------------------------------------------------------------------------- /tests/testvectors/gpg/pkaencrypted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/testvectors/gpg/pkaencrypted -------------------------------------------------------------------------------- /tests/testvectors/gpg/pkaencryptednomdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/testvectors/gpg/pkaencryptednomdc -------------------------------------------------------------------------------- /tests/testvectors/gpg/revoke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/testvectors/gpg/revoke -------------------------------------------------------------------------------- /tests/testvectors/gpg/signature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/testvectors/gpg/signature -------------------------------------------------------------------------------- /tests/testvectors/gpg/symencrypted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/testvectors/gpg/symencrypted -------------------------------------------------------------------------------- /tests/testvectors/gpg/symencryptednomdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/testvectors/gpg/symencryptednomdc -------------------------------------------------------------------------------- /tests/testvectors/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/testvectors/msg.h -------------------------------------------------------------------------------- /tests/testvectors/pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calccrypto/OpenPGP/HEAD/tests/testvectors/pass.h --------------------------------------------------------------------------------