forked from Cookies_Github_mirror/AquaDX
[F] Fix encryption
This commit is contained in:
@@ -10,14 +10,18 @@ import org.springframework.context.annotation.Scope
|
||||
import org.springframework.stereotype.Component
|
||||
|
||||
/**
|
||||
* @author samnyan (privateamusement@protonmail.com)
|
||||
* A new decoder object will be created each time a new request comes in
|
||||
*/
|
||||
@Component
|
||||
@Scope(BeanDefinition.SCOPE_PROTOTYPE)
|
||||
class AimeDbDecoder : ByteToMessageDecoder() {
|
||||
var length = 0
|
||||
var length: Int = 0
|
||||
val logger: Logger = LoggerFactory.getLogger(AimeDbDecoder::class.java)
|
||||
|
||||
init {
|
||||
logger.info("AimeDB Decoder Created")
|
||||
}
|
||||
|
||||
/**
|
||||
* Decrypt the incoming request including frame management
|
||||
* @param ctx ChannelHandlerContext
|
||||
|
||||
Reference in New Issue
Block a user