Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
Accidentally messed with the OpenSSLCryptoProvider (feat. Git)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cach30verfl0w committed Jun 15, 2024
1 parent 2eb9130 commit b734eb5
Showing 1 changed file with 199 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,199 @@
/*
* Copyright (c) 2024 Cach30verfl0w
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package io.karma.advcrypto.linux.providers

import io.karma.advcrypto.AbstractProvider
import io.karma.advcrypto.Providers
import io.karma.advcrypto.algorithm.delegates.KeyGenContext
import io.karma.advcrypto.keys.Key
import io.karma.advcrypto.keys.KeyPair
import io.karma.advcrypto.keys.enum.KeyType
import io.karma.advcrypto.linux.keys.OpenSSLKey
import io.karma.advcrypto.linux.keys.OpenSSLPKey
import io.karma.advcrypto.linux.utils.SecureHeap
import kotlinx.cinterop.CValuesRef
import kotlinx.cinterop.ExperimentalForeignApi
import kotlinx.cinterop.UIntVar
import kotlinx.cinterop.addressOf
import kotlinx.cinterop.alloc
import kotlinx.cinterop.memScoped
import kotlinx.cinterop.ptr
import kotlinx.cinterop.refTo
import kotlinx.cinterop.reinterpret
import kotlinx.cinterop.usePinned
import kotlinx.cinterop.value
import libssl.BN_free
import libssl.BN_new
import libssl.BN_set_word
import libssl.EVP_DigestFinal
import libssl.EVP_DigestInit
import libssl.EVP_DigestUpdate
import libssl.EVP_MAX_MD_SIZE
import libssl.EVP_MD
import libssl.EVP_MD_CTX_free
import libssl.EVP_MD_CTX_new
import libssl.EVP_PKEY_free
import libssl.EVP_PKEY_new
import libssl.EVP_PKEY_set1_RSA
import libssl.EVP_md5
import libssl.EVP_sha1
import libssl.EVP_sha224
import libssl.EVP_sha256
import libssl.EVP_sha384
import libssl.EVP_sha3_224
import libssl.EVP_sha3_256
import libssl.EVP_sha3_384
import libssl.EVP_sha3_512
import libssl.EVP_sha512
import libssl.RSAPublicKey_dup
import libssl.RSA_F4
import libssl.RSA_free
import libssl.RSA_generate_key_ex
import libssl.RSA_new

class OpenSSLCryptoProvider: AbstractProvider(
"Default",
"This class provides access to the default asymmetric and symmetric algorithms on Linux",
"1.0.0-Dev"
) {
private val secureHeap = SecureHeap(UShort.MAX_VALUE.toULong() + 1u, 0u)

@OptIn(ExperimentalForeignApi::class, ExperimentalStdlibApi::class)
override fun initialize(providers: Providers) {
fun openSSLHasher(name: String, hasher: CValuesRef<EVP_MD>?) {
algorithm(providers, name) {
hasher {
initialize {
val context = EVP_MD_CTX_new()!!
if (EVP_DigestInit(context, hasher) != 1) {
EVP_MD_CTX_free(context)
throw RuntimeException("Unable to create digest for '$name'")
}
context
}
hash { context, data ->
if (EVP_DigestUpdate(context, data.refTo(0), data.size.toULong()) != 1) {
throw RuntimeException("Unable to load content into hasher for '$name'")
}
memScoped {
val outLen = alloc<UIntVar>()
val outputArray = ByteArray(EVP_MAX_MD_SIZE)
outputArray.usePinned {
if (EVP_DigestFinal(context, it.addressOf(0).reinterpret(),
outLen.ptr) != 1) {
throw RuntimeException("Unable to finalize hasher for '$name'")
}
}
outputArray.sliceArray(0..<outLen.value.toInt()).toHexString()
}
}
close { context -> EVP_MD_CTX_free(context) }
}
}
}

openSSLHasher("MD5", EVP_md5())
openSSLHasher("SHA1", EVP_sha1())
openSSLHasher("SHA224", EVP_sha224())
openSSLHasher("SHA256", EVP_sha256())
openSSLHasher("SHA384", EVP_sha384())
openSSLHasher("SHA512", EVP_sha512())
openSSLHasher("SHA3-224", EVP_sha3_224())
openSSLHasher("SHA3-256", EVP_sha3_256())
openSSLHasher("SHA3-384", EVP_sha3_384())
openSSLHasher("SHA3-512", EVP_sha3_512())

algorithm(providers, "AES") {
keyGenerator<Unit>(Key.PURPOSES_SYMMETRIC, arrayOf(128, 196, 256), 256) {
initializer { spec -> KeyGenContext(spec, Unit) }
generateKey { context ->
OpenSSLKey.generateRandom(
secureHeap,
context.generatorSpec.keySize?: defaultKeySize,
context.generatorSpec.purposes,
"AES",
KeyType.SECRET
)
}
}
}

algorithm(providers, "RSA") {
keyGenerator(Key.PURPOSES_ALL, arrayOf(1024, 2048, 4096), 4096) {
initializer {
val bne = BN_new()
if (BN_set_word(bne, RSA_F4.toULong()) != 1) {
BN_free(bne)
throw RuntimeException("Initialization of RSA key generator failed")
}
bne!!
}

generateKeyPair { context ->
val keySize = context.generatorSpec.keySize?: defaultKeySize
val purposes = context.generatorSpec.purposes

// Generate keys
val rsa = RSA_new()
if (RSA_generate_key_ex(rsa, keySize, context.internalContext, null) != 1) {
RSA_free(rsa)
throw RuntimeException("RSA key generation failed")
}

val privateKey = EVP_PKEY_new()
if (EVP_PKEY_set1_RSA(privateKey, rsa) != 1) {
EVP_PKEY_free(privateKey)
RSA_free(rsa)
throw RuntimeException("Unable to acquire private key from RSA generator")
}

val publicKey = EVP_PKEY_new()
val publicKeyRSA = RSAPublicKey_dup(rsa)
if (EVP_PKEY_set1_RSA(publicKey, publicKeyRSA) != 1) {
EVP_PKEY_free(privateKey)
EVP_PKEY_free(publicKey)
RSA_free(publicKeyRSA)
RSA_free(rsa)
throw RuntimeException("Unable to acquire public key from RSA generator")
}

// Return key pair
KeyPair(
OpenSSLPKey(
publicKey!!,
(purposes and (Key.PURPOSE_ENCRYPT or Key.PURPOSE_VERIFY)),
KeyType.PUBLIC
),
OpenSSLPKey(
privateKey!!,
(purposes and (Key.PURPOSE_DECRYPT or Key.PURPOSE_SIGNING)),
KeyType.PRIVATE
)
)
}

close { context ->
BN_free(context.internalContext)
}
}
}
}

override fun close() {
this.secureHeap.close()
}
}

0 comments on commit b734eb5

Please sign in to comment.