├── .gitignore ├── .gitlab-ci.yml ├── ADDITIONS.md ├── CONTRIBUTORS.html ├── LICENSE.html ├── README.md ├── bc-jars-reg └── .gitkeep ├── examples ├── build.gradle ├── data │ └── id.p12 └── src │ └── main │ └── kotlin │ ├── ChameleonCertExamples.kt │ ├── MakeCRMFRequest.kt │ ├── MakeCertificateAndCrl.kt │ ├── MakeDualCertificateAndDualCrl.kt │ ├── MakeFullPath.kt │ ├── MakeKeyStore.kt │ ├── MakePKCS10Request.kt │ ├── MakePKCS10RequestMLDSA.kt │ ├── MakePKCS10WithKeyStore.kt │ ├── MakeSelfSignedCertificate.kt │ ├── MakeSelfSignedECCertificate.kt │ ├── MakeSelfSignedEDDSACertificate.kt │ ├── MakeSelfSignedEDDSA_MLDSACertificate.kt │ ├── MakeSelfSignedFalconCertificate.kt │ ├── MakeSelfSignedMLDSACertificate.kt │ ├── MakeSelfSignedMLDSAWithNTRUCertificate.kt │ ├── MakeSelfSignedSLHDSACertificate.kt │ └── MakeV3SelfSignedCertificate.kt ├── kcrypto ├── build.gradle ├── docs │ └── outline.md └── src │ ├── main │ └── kotlin │ │ └── org │ │ └── bouncycastle │ │ ├── kcrypto │ │ ├── AADProcessor.kt │ │ ├── AEADDecryptor.kt │ │ ├── AEADEncryptor.kt │ │ ├── AuthenticationKey.kt │ │ ├── DecryptionKey.kt │ │ ├── Decryptor.kt │ │ ├── Digest.kt │ │ ├── DigestCalculator.kt │ │ ├── DigestVerifier.kt │ │ ├── Encodable.kt │ │ ├── EncryptingKeyPair.kt │ │ ├── EncryptionKey.kt │ │ ├── Encryptor.kt │ │ ├── ID.kt │ │ ├── IndexedSignatureCalculator.kt │ │ ├── InputAEADDecryptor.kt │ │ ├── InputDecryptor.kt │ │ ├── KCryptoServices.kt │ │ ├── KeyPair.kt │ │ ├── KeyType.kt │ │ ├── KeyUnwrapper.kt │ │ ├── KeyWrapper.kt │ │ ├── MacCalculator.kt │ │ ├── MacVerifier.kt │ │ ├── OutputAEADDecryptor.kt │ │ ├── OutputAEADEncryptor.kt │ │ ├── OutputDecryptor.kt │ │ ├── OutputEncryptor.kt │ │ ├── PBKDF.kt │ │ ├── PrivateKey.kt │ │ ├── PublicKey.kt │ │ ├── SignatureCalculator.kt │ │ ├── SignatureVerificationStream.kt │ │ ├── SignatureVerifier.kt │ │ ├── SigningKey.kt │ │ ├── SigningKeyPair.kt │ │ ├── SigningStream.kt │ │ ├── SingleBlockDecryptor.kt │ │ ├── SingleBlockEncryptor.kt │ │ ├── SymmetricKey.kt │ │ ├── UnwrappingKey.kt │ │ ├── Utils.kt │ │ ├── VerificationKey.kt │ │ ├── WrappingKey.kt │ │ ├── cert │ │ │ ├── AttributeCertificate.kt │ │ │ ├── CRL.kt │ │ │ ├── CRLBuilder.kt │ │ │ ├── CRLEntry.kt │ │ │ ├── Certificate.kt │ │ │ ├── CertificateBuilder.kt │ │ │ ├── ExtensionsBuilder.kt │ │ │ ├── RevocationReason.kt │ │ │ └── dsl │ │ │ │ ├── CRLDsl.kt │ │ │ │ ├── CertificateDsl.kt │ │ │ │ ├── ExtensionsDsl.kt │ │ │ │ └── X500NameDsl.kt │ │ ├── cmp │ │ │ ├── ProtectedPKIMessage.kt │ │ │ └── dsl │ │ │ │ └── ProtectedPKIMessageDsl.kt │ │ ├── cms │ │ │ ├── AbsentContent.kt │ │ │ ├── AttributeTableProperties.kt │ │ │ ├── CertificateManagementMessage.kt │ │ │ ├── CertificateManagementMessageBuilder.kt │ │ │ ├── CounterSignersGenerator.kt │ │ │ ├── SignedData.kt │ │ │ ├── SignedDataBuilder.kt │ │ │ ├── SignedDataParser.kt │ │ │ ├── SignedDataStreamBuilder.kt │ │ │ ├── SignerInfo.kt │ │ │ ├── SignerInfoGenerator.kt │ │ │ ├── TypedByteArray.kt │ │ │ ├── TypedContent.kt │ │ │ ├── TypedContentStream.kt │ │ │ └── dsl │ │ │ │ └── CertificateManagementDsl.kt │ │ ├── crmf │ │ │ ├── CertificateRequest.kt │ │ │ ├── CertificateRequestBuilder.kt │ │ │ ├── CertificateRequestsBuilder.kt │ │ │ └── dsl │ │ │ │ └── CRMFRequestDsl.kt │ │ ├── dsl │ │ │ ├── EncryptionDsl.kt │ │ │ ├── KCryptoServicesDsl.kt │ │ │ ├── KeyStoreDsl.kt │ │ │ └── SignatureDsl.kt │ │ ├── internal │ │ │ ├── DecryptorProvider.kt │ │ │ ├── KContentSigner.kt │ │ │ ├── KDigestCalculator.kt │ │ │ ├── PBKDF2PbKdf.kt │ │ │ ├── ScryptPbKdf.kt │ │ │ └── Verifier.kt │ │ ├── param │ │ │ └── DSADomainParameters.kt │ │ ├── pkcs │ │ │ ├── PKCS10Request.kt │ │ │ ├── PKCS10RequestBuilder.kt │ │ │ ├── PKCS8EncryptedPrivateKey.kt │ │ │ ├── PKCS8EncryptedPrivateKeyBuilder.kt │ │ │ └── dsl │ │ │ │ ├── EncryptedPrivateKeyDsl.kt │ │ │ │ └── PKCS10RequestDsl.kt │ │ └── spec │ │ │ ├── AEADAlgSpec.kt │ │ │ ├── AlgSpec.kt │ │ │ ├── AuthGenSpec.kt │ │ │ ├── AuthKeyGenSpec.kt │ │ │ ├── DecGenSpec.kt │ │ │ ├── EncGenSpec.kt │ │ │ ├── EncPairGenSpec.kt │ │ │ ├── KeyGenSpec.kt │ │ │ ├── MacAlgSpec.kt │ │ │ ├── PBKDFAlgSpec.kt │ │ │ ├── SigAlgSpec.kt │ │ │ ├── SignGenSpec.kt │ │ │ ├── SignPairGenSpec.kt │ │ │ ├── SpecUtil.kt │ │ │ ├── SymAlgSpec.kt │ │ │ ├── SymGenSpec.kt │ │ │ ├── SymKeyGenSpec.kt │ │ │ ├── VerifyGenSpec.kt │ │ │ ├── asymmetric │ │ │ ├── DSAGenSpec.kt │ │ │ ├── DSASigSpec.kt │ │ │ ├── ECDSASigSpec.kt │ │ │ ├── ECGenSpec.kt │ │ │ ├── EdDSAGenSpec.kt │ │ │ ├── EdDSASigSpec.kt │ │ │ ├── FalconGenSpec.kt │ │ │ ├── FalconSigSpec.kt │ │ │ ├── LMSGenSpec.kt │ │ │ ├── LMSSigSpec.kt │ │ │ ├── MLDSAGenSpec.kt │ │ │ ├── MLDSASigSpec.kt │ │ │ ├── MLKEMGenSpec.kt │ │ │ ├── NTRUGenSpec.kt │ │ │ ├── OAEPSpec.kt │ │ │ ├── PKCS1SigSpec.kt │ │ │ ├── PSSSigSpec.kt │ │ │ ├── RSAGenSpec.kt │ │ │ ├── SLHDSAGenSpec.kt │ │ │ ├── SLHDSASigSpec.kt │ │ │ └── SM2SigSpec.kt │ │ │ ├── kdf │ │ │ ├── PBKDF2Spec.kt │ │ │ └── ScryptSpec.kt │ │ │ └── symmetric │ │ │ ├── AESGenSpec.kt │ │ │ ├── CCMSpec.kt │ │ │ ├── CMACSpec.kt │ │ │ ├── GCMSpec.kt │ │ │ ├── HMacGenSpec.kt │ │ │ ├── HMacSHA1GenSpec.kt │ │ │ ├── HMacSHA224GenSpec.kt │ │ │ ├── HMacSHA256GenSpec.kt │ │ │ ├── HMacSHA384GenSpec.kt │ │ │ ├── HMacSHA512GenSpec.kt │ │ │ ├── HMacSpec.kt │ │ │ └── KWPSpec.kt │ │ └── kutil │ │ ├── ASN1Dump.kt │ │ ├── CollectionStore.kt │ │ ├── FileExtensions.kt │ │ ├── ProviderFinder.kt │ │ └── Store.kt │ └── test │ └── kotlin │ ├── CCMTest.kt │ ├── CMSTest.kt │ ├── CertTest.kt │ ├── DigestTest.kt │ ├── FalconTest.kt │ ├── GCMTest.kt │ ├── LMSTest.kt │ ├── MLDSATest.kt │ ├── MacTest.kt │ ├── OAEPTest.kt │ ├── PKCS8Tests.kt │ ├── PSSTest.kt │ ├── PemTest.kt │ ├── SLHDSATest.kt │ ├── SymAlgSpecTests.kt │ └── TestUtils.kt ├── lib ├── kotlin-reflect-sources.jar ├── kotlin-reflect.jar ├── kotlin-script-runtime-sources.jar ├── kotlin-script-runtime.jar ├── kotlin-stdlib-jdk7-sources.jar ├── kotlin-stdlib-jdk7.jar ├── kotlin-stdlib-jdk8-sources.jar ├── kotlin-stdlib-jdk8.jar ├── kotlin-stdlib-sources.jar ├── kotlin-stdlib.jar ├── kotlin-test-sources.jar └── kotlin-test.jar ├── scripts ├── Dilithium.kts ├── Falcon.kts ├── LMS.kts ├── MLDSAPKCS10.kts ├── MakeFullPath.kts ├── NTRU-key.kts └── SLHDSA.kts └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /ADDITIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/ADDITIONS.md -------------------------------------------------------------------------------- /CONTRIBUTORS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/CONTRIBUTORS.html -------------------------------------------------------------------------------- /LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/LICENSE.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/README.md -------------------------------------------------------------------------------- /bc-jars-reg/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/build.gradle -------------------------------------------------------------------------------- /examples/data/id.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/data/id.p12 -------------------------------------------------------------------------------- /examples/src/main/kotlin/ChameleonCertExamples.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/ChameleonCertExamples.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakeCRMFRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakeCRMFRequest.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakeCertificateAndCrl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakeCertificateAndCrl.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakeDualCertificateAndDualCrl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakeDualCertificateAndDualCrl.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakeFullPath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakeFullPath.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakeKeyStore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakeKeyStore.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakePKCS10Request.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakePKCS10Request.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakePKCS10RequestMLDSA.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakePKCS10RequestMLDSA.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakePKCS10WithKeyStore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakePKCS10WithKeyStore.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakeSelfSignedCertificate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakeSelfSignedCertificate.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakeSelfSignedECCertificate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakeSelfSignedECCertificate.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakeSelfSignedEDDSACertificate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakeSelfSignedEDDSACertificate.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakeSelfSignedEDDSA_MLDSACertificate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakeSelfSignedEDDSA_MLDSACertificate.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakeSelfSignedFalconCertificate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakeSelfSignedFalconCertificate.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakeSelfSignedMLDSACertificate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakeSelfSignedMLDSACertificate.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakeSelfSignedMLDSAWithNTRUCertificate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakeSelfSignedMLDSAWithNTRUCertificate.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakeSelfSignedSLHDSACertificate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakeSelfSignedSLHDSACertificate.kt -------------------------------------------------------------------------------- /examples/src/main/kotlin/MakeV3SelfSignedCertificate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/examples/src/main/kotlin/MakeV3SelfSignedCertificate.kt -------------------------------------------------------------------------------- /kcrypto/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/build.gradle -------------------------------------------------------------------------------- /kcrypto/docs/outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/docs/outline.md -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/AADProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/AADProcessor.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/AEADDecryptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/AEADDecryptor.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/AEADEncryptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/AEADEncryptor.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/AuthenticationKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/AuthenticationKey.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/DecryptionKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/DecryptionKey.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/Decryptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/Decryptor.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/Digest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/Digest.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/DigestCalculator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/DigestCalculator.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/DigestVerifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/DigestVerifier.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/Encodable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/Encodable.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/EncryptingKeyPair.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/EncryptingKeyPair.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/EncryptionKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/EncryptionKey.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/Encryptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/Encryptor.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/ID.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/ID.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/IndexedSignatureCalculator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/IndexedSignatureCalculator.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/InputAEADDecryptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/InputAEADDecryptor.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/InputDecryptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/InputDecryptor.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/KCryptoServices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/KCryptoServices.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/KeyPair.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/KeyPair.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/KeyType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/KeyType.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/KeyUnwrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/KeyUnwrapper.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/KeyWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/KeyWrapper.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/MacCalculator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/MacCalculator.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/MacVerifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/MacVerifier.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/OutputAEADDecryptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/OutputAEADDecryptor.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/OutputAEADEncryptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/OutputAEADEncryptor.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/OutputDecryptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/OutputDecryptor.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/OutputEncryptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/OutputEncryptor.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/PBKDF.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/PBKDF.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/PrivateKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/PrivateKey.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/PublicKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/PublicKey.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SignatureCalculator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SignatureCalculator.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SignatureVerificationStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SignatureVerificationStream.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SignatureVerifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SignatureVerifier.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SigningKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SigningKey.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SigningKeyPair.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SigningKeyPair.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SigningStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SigningStream.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SingleBlockDecryptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SingleBlockDecryptor.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SingleBlockEncryptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SingleBlockEncryptor.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SymmetricKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/SymmetricKey.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/UnwrappingKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/UnwrappingKey.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/Utils.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/VerificationKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/VerificationKey.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/WrappingKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/WrappingKey.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/AttributeCertificate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/AttributeCertificate.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/CRL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/CRL.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/CRLBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/CRLBuilder.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/CRLEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/CRLEntry.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/Certificate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/Certificate.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/CertificateBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/CertificateBuilder.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/ExtensionsBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/ExtensionsBuilder.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/RevocationReason.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/RevocationReason.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/dsl/CRLDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/dsl/CRLDsl.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/dsl/CertificateDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/dsl/CertificateDsl.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/dsl/ExtensionsDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/dsl/ExtensionsDsl.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/dsl/X500NameDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cert/dsl/X500NameDsl.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cmp/ProtectedPKIMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cmp/ProtectedPKIMessage.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cmp/dsl/ProtectedPKIMessageDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cmp/dsl/ProtectedPKIMessageDsl.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/AbsentContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/AbsentContent.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/AttributeTableProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/AttributeTableProperties.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/CertificateManagementMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/CertificateManagementMessage.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/CertificateManagementMessageBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/CertificateManagementMessageBuilder.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/CounterSignersGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/CounterSignersGenerator.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/SignedData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/SignedData.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/SignedDataBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/SignedDataBuilder.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/SignedDataParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/SignedDataParser.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/SignedDataStreamBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/SignedDataStreamBuilder.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/SignerInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/SignerInfo.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/SignerInfoGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/SignerInfoGenerator.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/TypedByteArray.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/TypedByteArray.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/TypedContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/TypedContent.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/TypedContentStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/TypedContentStream.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/dsl/CertificateManagementDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/cms/dsl/CertificateManagementDsl.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/crmf/CertificateRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/crmf/CertificateRequest.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/crmf/CertificateRequestBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/crmf/CertificateRequestBuilder.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/crmf/CertificateRequestsBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/crmf/CertificateRequestsBuilder.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/crmf/dsl/CRMFRequestDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/crmf/dsl/CRMFRequestDsl.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/dsl/EncryptionDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/dsl/EncryptionDsl.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/dsl/KCryptoServicesDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/dsl/KCryptoServicesDsl.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/dsl/KeyStoreDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/dsl/KeyStoreDsl.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/dsl/SignatureDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/dsl/SignatureDsl.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/internal/DecryptorProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/internal/DecryptorProvider.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/internal/KContentSigner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/internal/KContentSigner.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/internal/KDigestCalculator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/internal/KDigestCalculator.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/internal/PBKDF2PbKdf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/internal/PBKDF2PbKdf.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/internal/ScryptPbKdf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/internal/ScryptPbKdf.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/internal/Verifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/internal/Verifier.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/param/DSADomainParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/param/DSADomainParameters.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/pkcs/PKCS10Request.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/pkcs/PKCS10Request.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/pkcs/PKCS10RequestBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/pkcs/PKCS10RequestBuilder.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/pkcs/PKCS8EncryptedPrivateKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/pkcs/PKCS8EncryptedPrivateKey.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/pkcs/PKCS8EncryptedPrivateKeyBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/pkcs/PKCS8EncryptedPrivateKeyBuilder.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/pkcs/dsl/EncryptedPrivateKeyDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/pkcs/dsl/EncryptedPrivateKeyDsl.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/pkcs/dsl/PKCS10RequestDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/pkcs/dsl/PKCS10RequestDsl.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/AEADAlgSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/AEADAlgSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/AlgSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/AlgSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/AuthGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/AuthGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/AuthKeyGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/AuthKeyGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/DecGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/DecGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/EncGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/EncGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/EncPairGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/EncPairGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/KeyGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/KeyGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/MacAlgSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/MacAlgSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/PBKDFAlgSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/PBKDFAlgSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/SigAlgSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/SigAlgSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/SignGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/SignGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/SignPairGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/SignPairGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/SpecUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/SpecUtil.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/SymAlgSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/SymAlgSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/SymGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/SymGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/SymKeyGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/SymKeyGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/VerifyGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/VerifyGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/DSAGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/DSAGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/DSASigSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/DSASigSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/ECDSASigSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/ECDSASigSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/ECGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/ECGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/EdDSAGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/EdDSAGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/EdDSASigSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/EdDSASigSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/FalconGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/FalconGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/FalconSigSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/FalconSigSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/LMSGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/LMSGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/LMSSigSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/LMSSigSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/MLDSAGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/MLDSAGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/MLDSASigSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/MLDSASigSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/MLKEMGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/MLKEMGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/NTRUGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/NTRUGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/OAEPSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/OAEPSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/PKCS1SigSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/PKCS1SigSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/PSSSigSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/PSSSigSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/RSAGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/RSAGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/SLHDSAGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/SLHDSAGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/SLHDSASigSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/SLHDSASigSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/SM2SigSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/asymmetric/SM2SigSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/kdf/PBKDF2Spec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/kdf/PBKDF2Spec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/kdf/ScryptSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/kdf/ScryptSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/AESGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/AESGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/CCMSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/CCMSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/CMACSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/CMACSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/GCMSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/GCMSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/HMacGenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/HMacGenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/HMacSHA1GenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/HMacSHA1GenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/HMacSHA224GenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/HMacSHA224GenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/HMacSHA256GenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/HMacSHA256GenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/HMacSHA384GenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/HMacSHA384GenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/HMacSHA512GenSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/HMacSHA512GenSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/HMacSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/HMacSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/KWPSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kcrypto/spec/symmetric/KWPSpec.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kutil/ASN1Dump.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kutil/ASN1Dump.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kutil/CollectionStore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kutil/CollectionStore.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kutil/FileExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kutil/FileExtensions.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kutil/ProviderFinder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kutil/ProviderFinder.kt -------------------------------------------------------------------------------- /kcrypto/src/main/kotlin/org/bouncycastle/kutil/Store.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/main/kotlin/org/bouncycastle/kutil/Store.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/CCMTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/CCMTest.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/CMSTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/CMSTest.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/CertTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/CertTest.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/DigestTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/DigestTest.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/FalconTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/FalconTest.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/GCMTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/GCMTest.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/LMSTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/LMSTest.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/MLDSATest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/MLDSATest.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/MacTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/MacTest.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/OAEPTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/OAEPTest.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/PKCS8Tests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/PKCS8Tests.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/PSSTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/PSSTest.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/PemTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/PemTest.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/SLHDSATest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/SLHDSATest.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/SymAlgSpecTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/SymAlgSpecTests.kt -------------------------------------------------------------------------------- /kcrypto/src/test/kotlin/TestUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/kcrypto/src/test/kotlin/TestUtils.kt -------------------------------------------------------------------------------- /lib/kotlin-reflect-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/lib/kotlin-reflect-sources.jar -------------------------------------------------------------------------------- /lib/kotlin-reflect.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/lib/kotlin-reflect.jar -------------------------------------------------------------------------------- /lib/kotlin-script-runtime-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/lib/kotlin-script-runtime-sources.jar -------------------------------------------------------------------------------- /lib/kotlin-script-runtime.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/lib/kotlin-script-runtime.jar -------------------------------------------------------------------------------- /lib/kotlin-stdlib-jdk7-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/lib/kotlin-stdlib-jdk7-sources.jar -------------------------------------------------------------------------------- /lib/kotlin-stdlib-jdk7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/lib/kotlin-stdlib-jdk7.jar -------------------------------------------------------------------------------- /lib/kotlin-stdlib-jdk8-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/lib/kotlin-stdlib-jdk8-sources.jar -------------------------------------------------------------------------------- /lib/kotlin-stdlib-jdk8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/lib/kotlin-stdlib-jdk8.jar -------------------------------------------------------------------------------- /lib/kotlin-stdlib-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/lib/kotlin-stdlib-sources.jar -------------------------------------------------------------------------------- /lib/kotlin-stdlib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/lib/kotlin-stdlib.jar -------------------------------------------------------------------------------- /lib/kotlin-test-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/lib/kotlin-test-sources.jar -------------------------------------------------------------------------------- /lib/kotlin-test.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/lib/kotlin-test.jar -------------------------------------------------------------------------------- /scripts/Dilithium.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/scripts/Dilithium.kts -------------------------------------------------------------------------------- /scripts/Falcon.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/scripts/Falcon.kts -------------------------------------------------------------------------------- /scripts/LMS.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/scripts/LMS.kts -------------------------------------------------------------------------------- /scripts/MLDSAPKCS10.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/scripts/MLDSAPKCS10.kts -------------------------------------------------------------------------------- /scripts/MakeFullPath.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/scripts/MakeFullPath.kts -------------------------------------------------------------------------------- /scripts/NTRU-key.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/scripts/NTRU-key.kts -------------------------------------------------------------------------------- /scripts/SLHDSA.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgit/bc-kotlin/HEAD/scripts/SLHDSA.kts -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | 2 | include "kcrypto","examples" 3 | --------------------------------------------------------------------------------