godot.gen.godot.X509Certificate.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of godot-library-debug Show documentation
Show all versions of godot-library-debug Show documentation
Contains godot api as kotlin classes and jvm cpp interaction code.
// THIS FILE IS GENERATED! DO NOT EDIT IT MANUALLY!
@file:Suppress("PackageDirectoryMismatch", "unused", "FunctionName", "RedundantModalityModifier",
"UNCHECKED_CAST", "JoinDeclarationAndAssignment", "USELESS_CAST",
"RemoveRedundantQualifierName", "NOTHING_TO_INLINE", "NON_FINAL_MEMBER_IN_OBJECT",
"RedundantVisibilityModifier", "RedundantUnitReturnType", "MemberVisibilityCanBePrivate")
package godot
import godot.`annotation`.GodotBaseType
import godot.core.TypeManager
import godot.core.VariantParser.LONG
import godot.core.VariantParser.STRING
import godot.core.memory.TransferContext
import godot.util.VoidPtr
import kotlin.Int
import kotlin.Long
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
/**
* The X509Certificate class represents an X509 certificate. Certificates can be loaded and saved
* like any other [Resource].
* They can be used as the server certificate in [StreamPeerTLS.acceptStream] (along with the proper
* [CryptoKey]), and to specify the only certificate that should be accepted when connecting to a TLS
* server via [StreamPeerTLS.connectToStream].
*/
@GodotBaseType
public open class X509Certificate : Resource() {
public override fun new(scriptIndex: Int): Unit {
callConstructor(ENGINECLASS_X509CERTIFICATE, scriptIndex)
}
/**
* Saves a certificate to the given [path] (should be a "*.crt" file).
*/
public final fun save(path: String): Error {
TransferContext.writeArguments(STRING to path)
TransferContext.callMethod(rawPtr, MethodBindings.savePtr, LONG)
return Error.from(TransferContext.readReturnValue(LONG) as Long)
}
/**
* Loads a certificate from [path] ("*.crt" file).
*/
public final fun load(path: String): Error {
TransferContext.writeArguments(STRING to path)
TransferContext.callMethod(rawPtr, MethodBindings.loadPtr, LONG)
return Error.from(TransferContext.readReturnValue(LONG) as Long)
}
/**
* Returns a string representation of the certificate, or an empty string if the certificate is
* invalid.
*/
public final fun saveToString(): String {
TransferContext.writeArguments()
TransferContext.callMethod(rawPtr, MethodBindings.saveToStringPtr, STRING)
return (TransferContext.readReturnValue(STRING) as String)
}
/**
* Loads a certificate from the given [string].
*/
public final fun loadFromString(string: String): Error {
TransferContext.writeArguments(STRING to string)
TransferContext.callMethod(rawPtr, MethodBindings.loadFromStringPtr, LONG)
return Error.from(TransferContext.readReturnValue(LONG) as Long)
}
public companion object
internal object MethodBindings {
public val savePtr: VoidPtr = TypeManager.getMethodBindPtr("X509Certificate", "save", 166001499)
public val loadPtr: VoidPtr = TypeManager.getMethodBindPtr("X509Certificate", "load", 166001499)
public val saveToStringPtr: VoidPtr =
TypeManager.getMethodBindPtr("X509Certificate", "save_to_string", 2841200299)
public val loadFromStringPtr: VoidPtr =
TypeManager.getMethodBindPtr("X509Certificate", "load_from_string", 166001499)
}
}