CN112187904A - Parameter decryption method and system based on multimedia system - Google Patents

Parameter decryption method and system based on multimedia system Download PDF

Info

Publication number
CN112187904A
CN112187904A CN202011001976.2A CN202011001976A CN112187904A CN 112187904 A CN112187904 A CN 112187904A CN 202011001976 A CN202011001976 A CN 202011001976A CN 112187904 A CN112187904 A CN 112187904A
Authority
CN
China
Prior art keywords
parameter
decryption
redis cache
encryption
direct field
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
CN202011001976.2A
Other languages
Chinese (zh)
Other versions
CN112187904B (en
Inventor
马越
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Sichuan Changhong Electric Co Ltd
Original Assignee
Sichuan Changhong Electric Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Sichuan Changhong Electric Co Ltd filed Critical Sichuan Changhong Electric Co Ltd
Priority to CN202011001976.2A priority Critical patent/CN112187904B/en
Publication of CN112187904A publication Critical patent/CN112187904A/en
Application granted granted Critical
Publication of CN112187904B publication Critical patent/CN112187904B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/50Network services
    • H04L67/56Provisioning of proxy services
    • H04L67/568Storing data temporarily at an intermediate stage, e.g. caching
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L63/00Network architectures or network communication protocols for network security
    • H04L63/04Network architectures or network communication protocols for network security for providing a confidential data exchange among entities communicating through data packet networks
    • H04L63/0428Network architectures or network communication protocols for network security for providing a confidential data exchange among entities communicating through data packet networks wherein the data content is protected, e.g. by encrypting or encapsulating the payload
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/01Protocols
    • H04L67/133Protocols for remote procedure calls [RPC]
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/50Network services
    • H04L67/56Provisioning of proxy services
    • H04L67/568Storing data temporarily at an intermediate stage, e.g. caching
    • H04L67/5682Policies or rules for updating, deleting or replacing the stored data

Abstract

The invention relates to the field of parameter decryption, aims to solve the problem that the interface is easy to fail or the interface calling is easy to fail due to overlong decryption time in the conventional interface parameter decryption method, and provides a parameter decryption method and a system based on a multimedia system, wherein the technical scheme is summarized as follows: starting multithreading, and initializing a starting thread pool and a Redis cache; storing the direct field into a Redis cache in a Key-Value form; acquiring a plurality of encryption parameters of an interface, and correspondingly putting the encryption parameters into a plurality of threads; in each thread, judging whether the corresponding encryption parameter is a direct field, if so, decrypting the encryption parameter in a Redis cache, otherwise, decrypting the encryption parameter in a decryption system; and assembling a new object by all the decrypted parameters, and performing interface operation. The invention improves the efficiency of parameter decryption and is suitable for a multimedia system.

Description

Parameter decryption method and system based on multimedia system
Technical Field
The invention relates to the technical field of parameter decryption, in particular to a parameter decryption method and system based on a multimedia system.
Background
Almost all current projects and systems have a common problem: and (4) safety. The problem of security of an item or system has been an integral part of the completion of a suite of systems. In order to prevent human or machine attacks, each set of system performs various security protection problems, for example, a complex password is set for user attacks, for example, a token check or sign verification mode can be set for authority, and in order to solve the problem that an attacker tampers with user interface parameters, the parameters need to be encrypted and decrypted after interface transmission. Encryption and decryption of parameters become the key to solve security.
In the prior art, the parameter decryption for the interface generally includes that all acquired encryption parameters are taken as a whole, a parameter decryption entry is set, each parameter is analyzed and translated in sequence, if a set or an object is encountered, the set and the object are taken as a whole, the decryption entry is entered again, the parameter is analyzed again, all the parameters are analyzed in a depth traversal and recursive decryption mode until all the parameters are analyzed, then a parameter structure is acquired again, the original encrypted parameters in the original parameter hierarchy structure are replaced by the decrypted parameters, and then corresponding interface operation is performed. In the case of a multimedia system with a large amount of parameters or a large value of encrypted parameter data, this approach has a fatal disadvantage that the time spent for decrypting in sequence is so long that the timeliness of the next interface operation cannot be guaranteed after decryption by the deep traversal method, and even the interface fails or the interface call fails after too long time. This is due to the fact that parameters and their structure are parsed over and over again, and decryption is only possible serially and sequentially.
Disclosure of Invention
The invention aims to solve the problem that the interface is easy to fail or the interface calling is easy to fail due to overlong decryption time in the conventional interface parameter decryption method, and provides a parameter decryption method and system based on a multimedia system.
The technical scheme adopted by the invention for solving the technical problems is as follows: the parameter decryption method based on the multimedia system comprises the following steps:
step 1, starting multithreading, and initializing a starting thread pool and Redis cache;
step 2, storing a direct field into a Redis cache in a Key-Value form, wherein the direct field is selected according to different multimedia systems;
step 3, acquiring a plurality of encryption parameters of an interface, and correspondingly putting the encryption parameters into a plurality of threads;
step 4, in each thread, judging whether the corresponding encryption parameter is a direct field, if so, decrypting the encryption parameter in a Redis cache, otherwise, decrypting the encryption parameter in a decryption system;
and 5, assembling all the decrypted parameters into a new object, and performing interface operation.
Further, the step 2 further comprises: and deleting the direct fields stored in the Redis cache after a preset time.
Further, in step 2, storing the direct field in the form of Key-Value into the Redis cache specifically includes:
and storing the direct field into a Redis cache by taking the encrypted Value of the direct field as an identification Key and the decrypted Value of the direct field as Value.
Further, in step 4, the decrypting the encrypted parameter in the Redis cache specifically includes:
and taking the encrypted Value of the encrypted parameter as an identification Key, judging whether the identification Key exists in a Redis cache, if so, acquiring a decrypted Value corresponding to the identification Key, and otherwise, decrypting the encrypted parameter in a decryption system.
Further, the method also comprises the following steps: if the encryption parameter is not a direct field and the identification Key of the encryption parameter does not exist in the Redis cache, the encryption parameter is decrypted in a decryption system, and then the decrypted encryption parameter is stored in the Redis cache in a Key-Value form.
The invention also provides a parameter decryption system based on the multimedia system, which comprises: the device comprises a starting unit, a storage unit, an acquisition unit, a decryption unit and an assembly unit;
the starting unit is used for starting multithreading, initializing a starting thread pool and a Redis cache;
the storage unit is used for storing a direct field into a Redis cache in a Key-Value form, and the direct field is selected according to different multimedia systems;
the acquiring unit is used for acquiring a plurality of encryption parameters of an interface and correspondingly putting the encryption parameters into a plurality of threads;
the decryption unit is used for judging whether the corresponding encryption parameter is a direct field or not in each thread, if so, decrypting the encryption parameter in a Redis cache, and otherwise, decrypting the encryption parameter in a decryption system;
and the assembling unit is used for assembling all the decrypted parameters into a new object and performing interface operation.
Further, the method also comprises the following steps: a deletion unit;
and the deleting unit is used for deleting the direct fields stored in the Redis cache after the preset time.
Further, the storage unit is further configured to: and storing the direct field into a Redis cache by taking the encrypted Value of the direct field as an identification Key and the decrypted Value of the direct field as Value.
Further, the decryption unit is further configured to: and taking the encrypted Value of the encrypted parameter as an identification Key, judging whether the identification Key exists in a Redis cache, if so, acquiring a decrypted Value corresponding to the identification Key, and otherwise, decrypting the encrypted parameter in a decryption system.
Further, the storage unit is further configured to: if the encryption parameter is a direct field and the identification Key of the encryption parameter does not exist in the Redis cache, the encryption parameter is decrypted in a decryption system, and then the decrypted encryption parameter is stored in the Redis cache in a Key-Value form.
The invention has the beneficial effects that: the parameter decryption method and system based on the multimedia system adopt the multithreading and Redis cache parameter reading and decryption modes for parallel use, improve the efficiency of parameter decryption, and reduce the occurrence of interface failure or interface calling failure caused by large data volume.
Drawings
FIG. 1 is a flowchart illustrating a parameter decryption method based on a multimedia system according to an embodiment of the present invention;
fig. 2 is a schematic structural diagram of a parameter decryption system based on a multimedia system according to an embodiment of the present invention.
Detailed Description
Embodiments of the present invention will be described in detail below with reference to the accompanying drawings.
The invention aims to solve the problem that the interface failure or the interface calling failure is easily caused by the overlong decryption time of the existing interface parameter decryption method, and provides a parameter decryption method and a system based on a multimedia system, wherein the technical scheme is summarized as follows: starting multithreading, and initializing a starting thread pool and a Redis cache; storing a direct field into a Redis cache in a Key-Value form, wherein the direct field is selected according to different multimedia systems; acquiring a plurality of encryption parameters of an interface, and correspondingly putting the encryption parameters into a plurality of threads; in each thread, judging whether the corresponding encryption parameter is a direct field, if so, decrypting the encryption parameter in a Redis cache, otherwise, decrypting the encryption parameter in a decryption system; and assembling a new object by all the decrypted parameters, and performing interface operation.
Firstly, when a project is started, multithreading and Redis cache services are started, and direct fields are set according to different systems and are used for distinguishing indirect fields. The direct field needing to be stored in the Redis cache is a large number of repeated encrypted fields, is easy to decrypt slowly and meaningless to decrypt repeatedly, and is stored in the Redis cache in the form of key and value according to the field name, and the fields can be guaranteed not to be leaked due to the safety guarantee of the Redis cache and the benefit of field time effectiveness setting. When an interface with large data volume encryption parameters is acquired by a tangent plane function, separating the fields of the parameters, and simultaneously putting the fields into threads, wherein each thread firstly judges whether the field is a direct field, if so, the Redis cache is removed, if the Redis cache has no value, the decryption method is removed, if the field entering the multithreading is not a direct field, the decryption method is directly removed, the terminal reserves a general object to assemble the decrypted parameters, and the interface operation is carried out after the assembly.
Examples
The parameter decryption method based on the multimedia system in the embodiment of the invention, as shown in fig. 1, comprises the following steps:
step S1, starting multithreading, and initializing a starting thread pool and a Redis cache;
when multi-threading is started, the maximum number of threads can be set, such as 5 threads, which can be used for a parameter decryption process and an interface operation process;
step S2, storing a direct field in a Redis cache in a Key-Value form, wherein the direct field is selected according to different multimedia systems;
specifically, byte fields which need to exist in the Redis cache are set (for example, "createdUser" and "systemType" are set as direct fields), and the direct fields can be selected according to different multimedia systems; the direct field needing to be stored in the Redis cache is a large number of repeated encrypted fields, the decryption is slow, and the repeated decryption has no meaning, and the method for storing the direct field in the Redis cache in the form of Key-Value can comprise the following steps:
and storing the direct field into a Redis cache by taking the encrypted Value of the direct field as an identification Key and the decrypted Value of the direct field as Value.
Optionally, step S2 may further include: and deleting the direct fields stored in the Redis cache after a preset time. For example, the aging is set to be 2 hours, and the data stored in the Redis cache is cleaned after 2 hours, so that the safety of the data is ensured.
Step S3, acquiring a plurality of encryption parameters of an interface, and correspondingly putting the encryption parameters into a plurality of threads;
it can be understood that a plurality of encryption parameters of the interface are obtained, for example, the interface is "/test/save", the encryption parameters are { "name": xxx "," content ": xxx", "age": xxx "," createdUser ": xxx", "systemType": xxx ". All parameters are put into the threads, e.g. 5 parameters in total in the example, and then directly enter 5 threads in the thread pool.
It should be noted that, when there are a plurality of encryption parameters, the number of which is greater than the number of threads, the encryption parameters may be uniformly distributed to the plurality of threads, and the plurality of threads sequentially execute a decryption process on the distributed encryption parameters.
Step S4, in each thread, judging whether the corresponding encryption parameter is a direct field, if so, decrypting the encryption parameter in the Redis cache, otherwise, decrypting the encryption parameter in a decryption system;
specifically, whether the parameter is a direct field is judged, for example, "createdUser" and "systemType" are the direct fields, the direct field is set to typep to 1, and the encrypted parameter is decrypted in the Redis cache; the indirect field sets type to 2, and the encryption parameter is decrypted in the decryption system.
Wherein, the decrypting the encryption parameter in the Redis cache specifically comprises:
and taking the encrypted Value of the encrypted parameter as an identification Key, judging whether the identification Key exists in a Redis cache, if so, acquiring a decrypted Value corresponding to the identification Key, and otherwise, decrypting the encrypted parameter in a decryption system.
Optionally, the method of this embodiment further includes: if the encryption parameter is a direct field and the identification Key of the encryption parameter does not exist in the Redis cache, the encryption parameter is decrypted in a decryption system, and then the decrypted encryption parameter is stored in the Redis cache in a Key-Value form.
Specifically, when the encryption parameter is a direct field and the identification Key of the encryption parameter does not exist in the Redis cache, it indicates that the encryption parameter is not stored in the Redis cache in advance, and in order to improve the subsequent parameter decryption efficiency, the encryption parameter is decrypted and then stored in the Redis cache in a Key-Value form, so that the subsequent same encryption parameter can be decrypted in the Redis cache. The specific method for storing the encrypted parameters into the Redis cache in a Key-Value form after decryption comprises the following steps:
and taking the encrypted Value of the encrypted parameter as an identification Key and the decrypted Value of the encrypted parameter as Value, and storing the direct field into a Redis cache.
And step S5, assembling all the decrypted parameters into a new object, and performing interface operation.
Specifically, the terminal reserves a general object to assemble the decrypted parameters, and simultaneously stores all the set fields needing to enter the Redis cache into the Redis cache in an increment mode, namely, the fields are repeatedly not stored and are not stored. Therefore, the decryption system can be used for fast decryption first each time the interface is accessed, and the decryption cannot be timed out.
Based on the above technical solution, this embodiment further provides a parameter decryption system based on a multimedia system, as shown in fig. 2, including: the device comprises a starting unit, a storage unit, an acquisition unit, a decryption unit and an assembly unit;
the starting unit is used for starting multithreading, initializing a starting thread pool and a Redis cache;
the storage unit is used for storing a direct field into a Redis cache in a Key-Value form, and the direct field is selected according to different multimedia systems;
the acquiring unit is used for acquiring a plurality of encryption parameters of an interface and correspondingly putting the encryption parameters into a plurality of threads;
the decryption unit is used for judging whether the corresponding encryption parameter is a direct field or not in each thread, if so, decrypting the encryption parameter in a Redis cache, and otherwise, decrypting the encryption parameter in a decryption system;
and the assembling unit is used for assembling all the decrypted parameters into a new object and performing interface operation.
It can be understood that, since the parameter decryption system based on the multimedia system according to the embodiment of the present invention is a system for implementing the parameter decryption method based on the multimedia system according to the embodiment, for the system disclosed in the embodiment, since it corresponds to the method disclosed in the embodiment, the description is simpler, and the related points can be referred to the partial description of the method.

Claims (10)

1. The parameter decryption method based on the multimedia system is characterized by comprising the following steps:
step 1, starting multithreading, and initializing a starting thread pool and Redis cache;
step 2, storing a direct field into a Redis cache in a Key-Value form, wherein the direct field is selected according to different multimedia systems;
step 3, acquiring a plurality of encryption parameters of an interface, and correspondingly putting the encryption parameters into a plurality of threads;
step 4, in each thread, judging whether the corresponding encryption parameter is a direct field, if so, decrypting the encryption parameter in a Redis cache, otherwise, decrypting the encryption parameter in a decryption system;
and 5, assembling all the decrypted parameters into a new object, and performing interface operation.
2. The multimedia system based parameter decryption method of claim 1, wherein said step 2 further comprises: and deleting the direct fields stored in the Redis cache after a preset time.
3. The multimedia system-based parameter decryption method according to claim 1, wherein in step 2, the storing the direct field in the form of Key-Value into the Redis cache specifically comprises:
and storing the direct field into a Redis cache by taking the encrypted Value of the direct field as an identification Key and the decrypted Value of the direct field as Value.
4. The parameter decryption method based on the multimedia system as claimed in claim 3, wherein in step 4, the decrypting the encrypted parameter in the Redis cache specifically includes:
and taking the encrypted Value of the encrypted parameter as an identification Key, judging whether the identification Key exists in a Redis cache, if so, acquiring a decrypted Value corresponding to the identification Key, and otherwise, decrypting the encrypted parameter in a decryption system.
5. The multimedia system based parameter decryption method of claim 4, further comprising: if the encryption parameter is a direct field and the identification Key of the encryption parameter does not exist in the Redis cache, the encryption parameter is decrypted in a decryption system, and then the decrypted encryption parameter is stored in the Redis cache in a Key-Value form.
6. Parameter decryption system based on a multimedia system, characterized in that it comprises: the device comprises a starting unit, a storage unit, an acquisition unit, a decryption unit and an assembly unit;
the starting unit is used for starting multithreading, initializing a starting thread pool and a Redis cache;
the storage unit is used for storing a direct field into a Redis cache in a Key-Value form, and the direct field is selected according to different multimedia systems;
the acquiring unit is used for acquiring a plurality of encryption parameters of an interface and correspondingly putting the encryption parameters into a plurality of threads;
the decryption unit is used for judging whether the corresponding encryption parameter is a direct field or not in each thread, if so, decrypting the encryption parameter in a Redis cache, and otherwise, decrypting the encryption parameter in a decryption system;
and the assembling unit is used for assembling all the decrypted parameters into a new object and performing interface operation.
7. The multimedia system based parameter decryption system of claim 6, further comprising: a deletion unit;
and the deleting unit is used for deleting the direct fields stored in the Redis cache after the preset time.
8. The multimedia system based parameter decryption system of claim 6, wherein said storage unit is further adapted to: and storing the direct field into a Redis cache by taking the encrypted Value of the direct field as an identification Key and the decrypted Value of the direct field as Value.
9. The multimedia system based parameter decryption system of claim 8, wherein the decryption unit is further configured to: and taking the encrypted Value of the encrypted parameter as an identification Key, judging whether the identification Key exists in a Redis cache, if so, acquiring a decrypted Value corresponding to the identification Key, and otherwise, decrypting the encrypted parameter in a decryption system.
10. The multimedia system based parameter decryption system of claim 9, wherein said storage unit is further adapted to: if the encryption parameter is a direct field and the identification Key of the encryption parameter does not exist in the Redis cache, the encryption parameter is decrypted in a decryption system, and then the decrypted encryption parameter is stored in the Redis cache in a Key-Value form.
CN202011001976.2A 2020-09-22 2020-09-22 Parameter decryption method and system based on multimedia system Active CN112187904B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202011001976.2A CN112187904B (en) 2020-09-22 2020-09-22 Parameter decryption method and system based on multimedia system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202011001976.2A CN112187904B (en) 2020-09-22 2020-09-22 Parameter decryption method and system based on multimedia system

Publications (2)

Publication Number Publication Date
CN112187904A true CN112187904A (en) 2021-01-05
CN112187904B CN112187904B (en) 2021-12-14

Family

ID=73955285

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202011001976.2A Active CN112187904B (en) 2020-09-22 2020-09-22 Parameter decryption method and system based on multimedia system

Country Status (1)

Country Link
CN (1) CN112187904B (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113590699A (en) * 2021-07-14 2021-11-02 车智互联(北京)科技有限公司 Interface request processing method and system and computing equipment

Citations (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20150341178A1 (en) * 2014-05-23 2015-11-26 Panasonic Intellectual Property Management Co., Ltd. Certificate issuing system, client terminal, server device, certificate acquisition method, and certificate issuing method
CN107995160A (en) * 2017-10-26 2018-05-04 常熟市第人民医院 A kind of JSON data packet encrypting and decrypting methods based on high in the clouds management and control
CN108170753A (en) * 2017-12-22 2018-06-15 北京工业大学 A kind of method of Key-Value data base encryptions and Safety query in shared cloud
US20180260435A1 (en) * 2017-03-13 2018-09-13 Molbase (Shanghai) Biotechnology Co., Ltd. Redis-based database data aggregation and synchronization method
CN108650095A (en) * 2018-04-17 2018-10-12 四川长虹电器股份有限公司 A kind of file encryption-decryption method based on redis
CN109299143A (en) * 2018-11-28 2019-02-01 重庆邮电大学 The knowledge fast indexing method in the data interoperation knowledge on testing library based on Redis caching
CN109710615A (en) * 2018-12-29 2019-05-03 江苏满运软件科技有限公司 Access management method, system, electronic equipment and the storage medium of database
EP3509000A1 (en) * 2018-01-09 2019-07-10 SCYTHE Inc. Endpoint vulnerability analysis platform with intelligent threat actors
US20200042502A1 (en) * 2017-10-30 2020-02-06 AtomBeam Technologies Inc. System and method for data storage, transfer, synchronization, and security using recursive encoding
CN111079162A (en) * 2019-12-13 2020-04-28 山东众阳健康科技集团有限公司 Data encryption method, data decryption method and data encryption system based on block chain
CN111190928A (en) * 2019-12-24 2020-05-22 平安普惠企业管理有限公司 Cache processing method and device, computer equipment and storage medium

Patent Citations (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20150341178A1 (en) * 2014-05-23 2015-11-26 Panasonic Intellectual Property Management Co., Ltd. Certificate issuing system, client terminal, server device, certificate acquisition method, and certificate issuing method
US20180260435A1 (en) * 2017-03-13 2018-09-13 Molbase (Shanghai) Biotechnology Co., Ltd. Redis-based database data aggregation and synchronization method
CN107995160A (en) * 2017-10-26 2018-05-04 常熟市第人民医院 A kind of JSON data packet encrypting and decrypting methods based on high in the clouds management and control
US20200042502A1 (en) * 2017-10-30 2020-02-06 AtomBeam Technologies Inc. System and method for data storage, transfer, synchronization, and security using recursive encoding
CN108170753A (en) * 2017-12-22 2018-06-15 北京工业大学 A kind of method of Key-Value data base encryptions and Safety query in shared cloud
EP3509000A1 (en) * 2018-01-09 2019-07-10 SCYTHE Inc. Endpoint vulnerability analysis platform with intelligent threat actors
CN108650095A (en) * 2018-04-17 2018-10-12 四川长虹电器股份有限公司 A kind of file encryption-decryption method based on redis
CN109299143A (en) * 2018-11-28 2019-02-01 重庆邮电大学 The knowledge fast indexing method in the data interoperation knowledge on testing library based on Redis caching
CN109710615A (en) * 2018-12-29 2019-05-03 江苏满运软件科技有限公司 Access management method, system, electronic equipment and the storage medium of database
CN111079162A (en) * 2019-12-13 2020-04-28 山东众阳健康科技集团有限公司 Data encryption method, data decryption method and data encryption system based on block chain
CN111190928A (en) * 2019-12-24 2020-05-22 平安普惠企业管理有限公司 Cache processing method and device, computer equipment and storage medium

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
ALAE EL ALAMI: "Supply of a Key Value Database Redis In-Memory", 《2018 19TH IEEE MEDITERRANEAN ELECTROTECHNICAL CONFERENCE (MELECON)》 *

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113590699A (en) * 2021-07-14 2021-11-02 车智互联(北京)科技有限公司 Interface request processing method and system and computing equipment
CN113590699B (en) * 2021-07-14 2023-12-01 车智互联(北京)科技有限公司 Interface request processing method, system and computing device

Also Published As

Publication number Publication date
CN112187904B (en) 2021-12-14

Similar Documents

Publication Publication Date Title
CN101770552B (en) Method for clearing computer password, computer and system for clearing computer password
CN112187904B (en) Parameter decryption method and system based on multimedia system
CN111884986B (en) Data encryption processing method and device and storage medium
CN111125690B (en) Method and device for reinforcing host and storage medium
CN106161710B (en) A kind of user account safety management system based on smart phone
CN115795538A (en) Desensitization document anti-desensitization method, apparatus, computer device and storage medium
CN109166199B (en) Password generation method, device and equipment
CN115794356B (en) Multithread synchronous connection processing method based on SSH server
CN116827551A (en) Method and device for preventing global override
CN111600701A (en) Private key storage method and device based on block chain and storage medium
CN108829534B (en) Data problem repairing method, device, computer equipment and storage medium
CN111506591A (en) Block chain-based vehicle identity authentication method, device, computer and medium
CN113742681B (en) Account management method and device, computer equipment and storage medium
CN111556339B (en) Video information privacy protection system and method based on sensitive information measurement
CN115795509A (en) Weak password event processing method and device, processor and electronic equipment
CN113569205A (en) SDK software interface service authorization method and device
CN110363000B (en) Method, device, electronic equipment and storage medium for identifying malicious files
CN110162974B (en) Database attack defense method and system
CN116561817B (en) Target object processing method, device and equipment
CN115914005B (en) Data auditing system and method
CN117235686B (en) Data protection method, device and equipment
CN116450745B (en) Multi-device-based note file operation method, system and readable storage medium
CN113918969B (en) Method for searching Bitlocker decryption key based on memory data
CN112597534A (en) File protection method and device, storage medium and electronic device
CN116541858A (en) Data cloud storage method and system based on big data and edge calculation

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant