Multi Device-Multi Channel Authorization Code Using Hash Reconstruction Technique

Information

  • Patent Application
  • 20230351378
  • Publication Number
    20230351378
  • Date Filed
    April 29, 2022
    2 years ago
  • Date Published
    November 02, 2023
    a year ago
Abstract
Computer-implemented multi-device and multi-channel processes and machines authenticate ATM transactions by independently generating authentication hashes based on authorization arrays of varying length in which array cells have been wiped out based on a one time passcode sent by a server to a user's smart electronic device and then entered via that channel into the ATM either automatically or manually. The arrays are salted based on characteristics of the user's smart electronic device or the like. If the authentication hashes independently generated by the ATM and the server match, the ATM transaction is authorized.
Description
TECHNICAL FIELD OF DISCLOSURE

The present disclosure relates to processes and machines for information security including the prevention of fraudulent and unauthorized transactions inconsistent with defined security policies to control data tampering by limiting access to authorized entities or processes for general access control or authentication of information security.


BACKGROUND

Authorization codes such as, for example, one-time passcodes (“OTP”), are often used to approve authentication of financial or high-risk transactions. These are fixed length and not strictly tied to the transaction originating device. The current identity and access management industry is heavily dependent on authorization codes. Currently, hackers and attackers almost always know the length of an authorization code before an attack is initiated, so they know how many possible attempts may need to be made on an authorization code to find out the correct one. As an example, a six (6) digit OTP will have 999999 possible combinations. A hacker could use a brute force attack to cycle through each possible combination to find the correct one. And there are no empty slots involved and OTP randomization is done and no other code is involved from client side.


Another problem is that only one physical device is involved in transaction authorization through authorization codes. Further, the authorization code transfer is in encrypted format, which can be reversed with right combination of public/private keys. All these loopholes emphasize the need to improve the authorization code generation and validation process.


SUMMARY

In accordance with one or more arrangements of the disclosures contained herein, solution(s) are provided to address one or more of the shortcomings in the identity and access management industry by, for example, generating a random length vector (e.g., provisional code at 10×10 length) as opposed to a fixed length authorization code and sending it back to a second party device (e.g., ATM, teller, POS machine, self-service terminal, public terminal, etc.) where the request originated. The usual authorization code (preliminary authorization code) can be sent to a customer's primary device. The preliminary authorization code in random rows in the provisional authorization code can be wiped out as a user enters it in a secondary device. The final authorization code can be generated by hashing an outstanding provisional code with device salt and/or characteristics of the device. The final authorization code can be carried through the secondary device and hash salt and device characteristics through the user's primary device. A server can then generate a fresh hash using salt and device characteristics, and then compare it against a received one. Additional examples and configuration variations are identified herein as well.


As a preliminary matter, in the context of this disclosure, various similar terms are used such as encryption, hashing, and salting. Although similar and often used in conjunction with one another, they serve different functions and operate differently.


For those unfamiliar with the term, “encrypting” or “encryption” refers to the practice of scrambling information in such a way that only someone who has a corresponding key can decrypt and read it. When it comes to encryption, it is a two-way street. When you encrypt something, you're doing so with the intent of decrypting it later on down the road. This is a critical distinction between encryption and hashing techniques. Data is encrypted using something known as a cipher, which consists of a series of well-defined steps that can be followed procedurally—both to encrypt and decrypt information—to encrypt and decrypt information. The algorithm is also referred to as the encryption key in some circles. A plain text document, for example, can first be encrypted into ciphertext, which can then later be decrypted to reveal the original plain text document.


With respect to a “hash” or “hashing,” it is the practice of using an algorithm to map data of any size to a fixed length vector to save space on a disk. This is referred to as a hash value (or sometimes hash code or hash sums or even a hash digest). When compared to encryption, which is a two-way operation, hashing is a one-way operation. Instead of protecting data in transit, hashing is used to verify that a file or piece of data has not been altered and that it is genuine. This means that it acts as a checksum or something along those lines to provide certainty that the file or piece of data is 100% correct, uncorrupted, and unaltered.


In general, the way hashing works is that each hashing algorithm produces an output of a fixed length. An example of a well-known hashing algorithm is SHA-256. The designation “256” indicates that the algorithm will output a hash value that is 256 bits long, which is typically represented by a 64-character hexadecimal string.


Every hash value is one-of-a-kind. Consider the following scenario: a developer wants to digitally sign a piece of software and make it available for download on a website. Hashing can help the developer accomplish this. For this, the developer will create a hash of the script or executable that is being signed, and then after adding the developer's digital signature, that will be hashed as well, to ensure that everything is secure. Following that, the software is encrypted to enable secure download.


In the case of customers downloading software, their browser will decrypt the file and then look for two distinct hash values. When the browser has finished, it will run the same hash function, using the same algorithm, to hash both the file and the signature once more. If the browser generates the same hash value as the signature, it knows that both the signature and the file are authentic and have not been tampered with in any way. Alternatively, if it is not, the browser in this example would display a warning. Essentially, since there is no realistic risk that any two files can produce the same hash value, any modification—even the slightest tweak—will result in a different value. As a result of hashing, a plaintext file can be hashed with a hash function to generate a unique hashed piece of text. A skilled artisan will be readily appreciate that there are a variety of commercially known hashing algorithms available, including: MD4, MD5, SHA, RIPEMD, WHIRLPOOL, and TIGER, to name a few examples. These algorithms are not described in detail herein for the sake of brevity, but they would be readily understood by a person of ordinary skill in the art to put them into practice. Any suitable hashing function may be used in the context of this disclosure.


Last, “salt” or “salting” is a concept that is most associated with password hashing. In essence, salt is a unique value that can be appended to the end of a password to generate a different hash value. This adds an additional layer of security to the hashing process, specifically protecting against brute force attacks, which is particularly helpful. In short, a brute force attack is one in which a computer or botnet attempts every possible combination of letters and numbers until the password is discovered by the attacker. The term “salt” refers to the additional value that is added when something is salted. The idea is that by including a salt at the end of a password and then hashing it, you can make the password cracking process more difficult.


As an example, assume that the password to salt is “ThisIsMyPassword.” The salt could simply be the word “SALT.” Before hashing, you add SALT to the data, such as at the end of it; however, the salt could be implemented in any desired location in a vector. So, in this example of salt being appended to an existing password, it would look like this: “ThisIsMyPasswordSALT.” The hash value is different than it would be for just the plain unsalted password. Even the slightest variation to the data being hashed will result in a different unique hash value.


Encryption is a two-way function (i.e., for both encryption and decryption) in which information is scrambled in such a way that it can later be decoded. For hashing, data is mapped to a fixed-length value using a one-way hashing function. Most of the time, hashing is used for authentication. And salting is an additional step during hashing that is typically associated with hashed passwords. It involves appending (or inserting a predesignated location(s) with a vector or array) an additional value to the end (or elsewhere if preferred) of the password, which alters the hash value that is produced as a result.


Considering the foregoing, the following presents a simplified summary of the present disclosure to provide a basic understanding of various aspects of the disclosure. This summary is not limiting with respect to the exemplary aspects of the inventions described herein and is not an extensive overview of the disclosure. It is not intended to identify key or critical elements of or steps in the disclosure or to delineate the scope of the disclosure. Instead, as would be understood by a personal of ordinary skill in the art, the following summary merely presents some concepts of the disclosure in a simplified form as a prelude to the more detailed description provided below. Moreover, sufficient written descriptions of the inventions are disclosed in the specification throughout this application along with exemplary, non-exhaustive, and non-limiting manners and processes of making and using the inventions, in such full, clear, concise, and exact terms to enable skilled artisans to make and use the inventions without undue experimentation and sets forth the best mode contemplated for carrying out the inventions.


In some arrangements, a multi-device multi-channel authorization process comprises the steps of: generating, at an ATM, an authorization code for an ATM transaction; transmitting, by the ATM to a server, the authorization code; authenticating, by the server, the authorization code; generating, by the server, a preliminary code; transmitting, by the server to a user's electronic device, the preliminary code; receiving, by the ATM, the preliminary code; generating, by the server, a provisional matrix; transmitting, by the server to the ATM, the provisional matrix; generating, by the ATM, a matrix row index for the preliminary code; transmitting, by the ATM to the server, the matrix row index; converting, by the ATM, the provisional matrix into an ATM final matrix by wiping entries in the provisional matrix based on the matrix row index and the preliminary code; converting, by the server, the provisional matrix into a server final matrix by wiping entries in the provisional matrix based on the matrix row index and the preliminary code; hashing, by the ATM, the ATM final matrix into an ATM hash value for each row in the ATM final matrix; hashing, by the server, the server final matrix into a server hash value for each row in the server final matrix; generating, by the ATM, an ATM final authorization hash by combining each said ATM hash value; generating, by the server, a server final authorization hash by combining each said server hash value; and authorizing, by the ATM and the server, the ATM transaction if the ATM final authorization hash matches the server final authorization hash.


In some arrangements, a multi-device multi-channel authorization process comprises the steps of: receiving, at an electronic terminal, a preliminary authorization code; generating, by the electronic terminal, a random row array; transmitting, by the electronic terminal to a user's device; the random row array; generating, by the electronic terminal, a provisional matrix; wiping out, by the electronic terminal, one or more cells in the provisional matrix; generating, by the electronic terminal, an electronic terminal final authorization hash based on one or more characteristics of said user's device and a stored hash salt; transmitting, by the electronic terminal to a server, said electronic terminal final authorization hash; receiving, by the server, the random row array; generating, by the server, a server final authorization hash based on the random row array, said one or more characteristics of said user's device, and said stored hash salt; comparing, by the server, the electronic terminal final authorization hash to the server final authorization hash; generating, by the server, an authorization an electronic transaction if the electronic terminal final authorization hash matches the server final authorization hash; and transmitting, by the server to the electronic terminal, the authorization for the electronic transaction.


In some arrangements, a multi-device multi-channel authorization process comprises the steps of: generating, by a server, a random length vector; transmitting, by the server to an ATM, the random length vector; generating, by the server, a one time passcode; transmitting, by the server to a user's electronic device, the one time passcode; receiving, by the ATM, the one time passcode; generating, by the ATM, an ATM matrix with wiped out ATM cells based on the one time passcode; generating, by the server, a server matrix with wiped out server cells based on the one time passcode; generating, by the ATM, an ATM final authorization code by hashing the random length vector with device salt and device characteristics for said user's electronic device; generating, by the server, a server final authorization code by hashing the random length vector with said device salt and said device characteristics for said user's electronic device; comparing, by the server, the ATM final authorization code and the server final authorization code; and authorizing, by the server, a transaction if the ATM final authorization code matches the server final authorization code.


In some arrangements, one or more various steps, processes, and/or functions can be implemented, in whole or in part, in conjunction with machine(s) having computer-executable instructions stored on one or more local or distributed computer-readable media potentially along with various data that are executed by one or more application integrated circuits (ASICs), processors, or the like that are communicatively coupled with various machine(s) and device(s) by any type of suitable wired and/or wireless protocol(s), network(s) (e.g., local, wide area, ultrawideband, etc.), communication busses, etc. such as generally depicted, as merely one example, in FIG. 1. A skilled artisan will readily appreciate that this disclosure is extremely broad in this regard and is not in any way limited to the example of FIG. 1.


These and other features, and characteristics of the present technology, as well as the methods of operation and functions of the related elements of structure and the combination of parts and economies of manufacture, will become more apparent upon consideration of the following description and the appended claims with reference to the accompanying drawings, all of which form a part of this specification, wherein like reference numerals designate corresponding parts in the various figures. It is to be expressly understood, however, that the drawings are for the purpose of illustration and description only and are not intended as a definition of the limits of the invention. As used in the specification and in the claims, the singular form of ‘a’, ‘an’, and ‘the’ include plural referents unless the context clearly dictates otherwise.





BRIEF DESCRIPTION OF THE DRAWINGS


FIG. 1 depicts exemplary operating environment(s) and functionality for information security machines and processes to implement one or more aspects of this disclosure to provide improvements in the identity and access management industry.



FIG. 2 is a high-level overview and flow diagram in which various aspects of this disclosure can be implemented.



FIG. 3 sample artificial-intelligence and/or machine learning flow diagram illustrating how to implement one or more aspects of this disclosure.



FIG. 4 depicts a Multi Device-Multi Channel Authorization Code—Final AuthHash Example using Provisional and Preliminary Codes in accordance with one or more aspects of this disclosure.



FIG. 5 depicts a Multi Device-Multi Channel Authorization Code Device Enrollment in accordance with one or more aspects of this disclosure.



FIGS. 6A and 6B identify exemplary server stored data for future validation and hashing as well as depict a Multi Device-Multi Channel Authorization Code Sample Device Table in accordance with one or more aspects of this disclosure.



FIG. 7 shows a Multi Device-Multi Channel Authorization Code—Provisional and Preliminary Authorization Code Generation in accordance with one or more aspects of this disclosure.



FIG. 8 shows a Multi Device-Multi Channel Authorization Code—Final Authorization code Generation and Authentication Process in accordance with one or more aspects of this disclosure.





DETAILED DESCRIPTION OF THE DISCLOSURE

In the following description of the various embodiments to accomplish the foregoing, reference is made to the accompanying drawings, which form a part hereof, and in which is shown by way of illustration, various embodiments in which the disclosure may be practiced. It is to be understood that other embodiments may be utilized and structural and functional modifications may be made. It is noted that various connections between elements are discussed in the following description. It is noted that these connections are general and, unless specified otherwise, may be direct or indirect, wired, or wireless, and that the specification is not intended to be limiting in this respect.


As used throughout this disclosure, any number of computers, machines, (including ATMs, POS, self-service teller, public terminals, etc.) or the like (e.g., 100, 102, 112, 114, 180 . . . 180N, 190 . . . 190N etc.) can include one or more general-purpose, customized, configured, special-purpose, virtual, physical, and/or network-accessible devices such as: administrative computers, clients, clusters, compliance watchers, computing devices, computing platforms, controlled computers, controlled computers, controlling computers, desktop computers, distributed systems, enterprise computers, instances, laptop devices, monitors or monitoring systems, nodes, notebook computers, personal computers, portable electronic devices, servers, smart devices, streaming servers, tablets, and/or workstations, which may have one or more ASICs, microprocessors, cores, executors etc. for executing, accessing, controlling, implementing etc. various software, computer-executable instructions, data, modules, processes, routines, or the like as discussed below.


References to computers, machines, or the like as in the examples above are used interchangeably in this specification and are not considered limiting or exclusive to any particular type(s) of electrical device(s), or component(s), or the like. Instead, references in this disclosure to computers, machines, or the like are to be interpreted broadly as understood by skilled artisans. Further, as used in this specification, computers, machines, or the like also include all hardware and components typically contained therein such as, for example, ASICs, processors, executors, cores, etc. (e.g., 100A, 102A, etc.), display(s) and/or input interfaces/devices (e.g., 100B, 102B, etc.), network interfaces, communication buses, or the like (e.g., 100C, 102C, etc.), and memories or the like (e.g., 100D, 102D, etc.), which can include various sectors, locations, structures, or other electrical elements or components (for brevity these are not separately shown for a user's 110 wearable device 112 or portable device 114). Other specific or general components, machines, or the like are not depicted in the interest of brevity and would be understood readily by a person of skill in the art. One or more sample(s) of the foregoing, some of which are expressly depicted, can be seen in FIG. 1 along with their associated components, subcomponents, related elements, sub-elements, etc.


As used throughout this disclosure, software, computer-executable instructions, data, modules, processes, routines, or the like can include one or more: active-learning, algorithms, alerts, applications, application program interfaces (APIs), artificial intelligence, attachments, big data, cryptography, cryptographic hashes, daemons, databases, datasets, drivers, data structures, emails, encryptions, file systems or distributed file systems, firmware, governance rules, graphical user interfaces, hashes, images, instructions, machine learning, middleware, modules, objects, operating systems, platforms, processes, protocols, programs, routines, scripts, tools, utilities, etc.


In the context of this disclosure, artificial intelligence deals with imparting the decisive ability and thinking ability to the cyber security machines. It is a blend of computer science, data analytics, and computer-implemented mathematics, and can include classification algorithms (e.g., Naive Bayes, Decision Tree, Random Forest, Support Vector Machines, K Nearest Neighbors, etc.), regression algorithms (e.g., Linear Regression, Lasso Regression, Logistic Regression, Multivariate Regression, Multiple Regression, etc.), clustering algorithms (e.g., K-Means Clustering, Fuzzy C-mean, Expectation-Maximisation, Hierarchical Clustering, etc.), etc. Machine learning in the context of this disclosure is closely related and may be considered in some instances to overlap with artificial intelligence wholly or partially. In the context of this disclosure, machine learning can be supervised, semi-supervised, reinforcement, and/or unsupervised learning. Sample algorithms can include bidirectional LSTM, Logistic Regression, XG Boost, Random Forest, etc. Natural language processing may also be utilized if desired.


The foregoing software, computer-executable instructions, data, modules, processes, routines, or the like can be on tangible computer-readable memory (local, in network-attached storage, be directly and/or indirectly accessible by network, removable, remote, cloud-based, cloud-accessible, etc.), can be stored in volatile or non-volatile memory, and can operate autonomously, on-demand, on a schedule, spontaneously, proactively, and/or reactively, and can be stored together or distributed across computers, machines, or the like including memory and other components thereof. Examples can be seen in FIG. 1 as memor(ies)/module(s) 100D, 102D along with samples of the foregoing generically represented, in one instance for illustrative purposes, as any number of components, modules or the like such as element —100-D1, element —100-D2, element—100-D3, . . . element—100-DN in one or more sectors, locations, components, etc. Some or all the foregoing may additionally and/or alternatively be stored similarly and/or in a distributed manner in application database 120 and/or network accessible storage/distributed data/datastores/databases/big data etc. 170.


Sample local and/or distributed memory (or the like) contents in accordance with the foregoing may include, as shown in sample structure 106, software, computer-executable instructions, data, modules, process, routines or the like, such as: Authorization Codes, Authorization Modules, Application Databases, Communication Module(s), Comparison Module(s), Current Users, Device Characteristics, Device Salt(s), Device Specific Hash Salts And Unique Ids, Device Table Update Module(s), Device Tables, Device Types, DeviceIDs, Enrollment Codes, Final Authorization Hashes, Final Matrices, Hash And Salt Generation Module(s), Hash Salts(s), Hash Values By Matrix Row, Hashes, Matrix Row Indices, Networking Module(s), Operating System Modules, Preliminary Code(s) (One-Time Passwords), Provisional And Preliminary Code Generation Module(s), Provisional Code(s), Provisional Matrices, Random Row Arrays, Row Indices For Provisional Code(s), Secondary Device Component Module(s), Server Component Module(s), Server Databases, Validation Module(s), Wipeout Module(s), Wipeout Provisional Matrix Cells, and other related components, data, and modules, etc.


The foregoing software, computer-executable instructions, data, modules, processes, routines, or the like, when executed—individually and/or collectively across—one or more various computers, machines, or the like (or any components therein) may cause ASICs, processor(s), core(s), executor(s), etc. to perform one or more artificial intelligence, machine learning and/or other above-referenced functions relevant to cyber security and/or may store or otherwise maintain information that may be used in one or more aspects of this disclosure.


As used throughout this disclosure, computer “networks,” topologies, or the like (e.g., 160, etc.) can include one or more local area networks (LANs), wide area networks (WANs), the Internet, clouds, wired networks, wireless networks, digital subscriber line (DSL) networks, frame relay networks, asynchronous transfer mode (ATM) networks, virtual private networks (VPN), Bluetooth, ultrawideband (UWB), various protocol(s), or any direct or indirect combinations of the same. Networks also include associated equipment and components such as access points, adapters, buses, Bluetooth adapters, ethernet adaptors (physical and wireless), firewalls, hubs, modems, routers, and/or switches UWB adapters, located inside the network, on its periphery, and/or elsewhere, and software, computer-executable instructions, data, modules, processes, routines, or the like executing on the foregoing. Network(s) may utilize any transport that supports HTTP or any other type of suitable communication, transmission, and/or other packet-based or other suitable protocol. One or more sample(s) of the foregoing, some of which are expressly depicted, can be seen in FIG. 1 along with their associated components, subcomponents, related elements, sub-elements, etc.


Accordingly, and as described briefly above, a skilled artisan will understand that FIG. 1 depicts exemplary operating environment(s) and functionality for information security machines and processes to implement one or more cyber security aspects of this disclosure.


As used herein, a hash is a function that converts one value to another. Hashing data is a common practice in computer science and is used for several different purposes. Examples include cryptography, compression, checksum generation, and data indexing. Hashing masks the original data with another value. A hash function can be used to generate a value that can only be decoded by looking up the value from a hash table. The table may be an array, database, or other data structure. A good cryptographic hash function is non-invertible, meaning it cannot be reverse engineered.


Hashes are also used to generate checksums, which are used to ensure that files are not corrupted. Typically, checksums are small values generated based on the bits in a file or block of data, such as a disk image, and used to verify that the data is correct. Checksum functions on copies of files (such as those downloaded from the Internet) should produce hashed values that are the same as those produced by the original file when the function is run. If the file does not produce the same checksum as before, this indicates that something in the file has been changed.


Lastly, hashes are used to organize and index data. Data can be mapped to individual “buckets” within a hash table using hashing values, which are stored in a database. Each bucket is identified by a unique ID, which serves as a pointer to the underlying data. This results in an index that is significantly smaller than the original data, allowing for more efficient searching and accessing of the values. All types of hashes and the like are considered to be within the spirit and scope of this disclosure.



FIG. 2 is a high-level overview and flow diagram in which various aspects of this disclosure can be implemented. A user 110 wearing a smart watch 112 or having some other portable smart electronic device 114 can approach a secondary device (e.g., ATM) and electronically communicate with it either wirelessly such as with a watch or physically such as by physical insertion of an ATM card into the ATM in S200. The ATM sends, to a server 180, an authorization code based on the card characteristics, information, and the PIN or other authentication information received from user in S202.


The server then sends a preliminary code (e.g., OTP) to the user's device in S204. The user can manually enter the OTP or it can be automatically relayed from the wearable or portable electronic device in S206. The server also generates and sends a provisional matrix to the ATM in S208. Example matrices are show in in FIG. 4 and will be discussed in more detail infra.


The ATM then generates a sample matrix row index for the provisional code and sends it to the server in S210. The ATM and server use the sample matrix row provisional code (OTP) to wipeout or erase select matrix cell values and thus convert provisional matrix values into FinalAuth Code Matrix Values and then compare the final ATM hash with the final server hash in S212. This is disclosed in more detail below.


By way of non-limited reference and explanation, a generic, sample, implementation of an artificial intelligence, machine-learning, and/or the like flow diagram is depicted in FIG. 3 to show how to implement one or more aspects of this disclosure. A random length vector (e.g., provisional code at 10×10 length) can be generated and send back to the second party device (ATM, Teller, POS Machine etc.) 102 or the like the where request is originated in S300. The usual Authorization code (preliminary Authorization code) can be sent to the customer's primary device in S302. The preliminary Authorization code in random rows in provisional Authorization code can be wiped out as the user enters it in the secondary device in S304. The final Authorization code can be generated by hashing the outstanding provisional code with device salt and device characteristics in S306. The final Authorization code can be carried through the secondary device and hash salt and device characteristics through user's primary device in S308. The server can generate a fresh hash using device salt and characteristics and perform a comparison against the received one in S310.



FIG. 4 depicts a Multi Device-Multi Channel Authorization code—Final AuthHash Example using Provisional and Preliminary Codes in accordance with one or more aspects of this disclosure. The preliminary code (e.g., OTP) 400 and sample matrix row index for a 6 digit or other length provisional code can be used to convert provisional matrix values 404 into Final Authorization code Matrix Values 406.


The matrices may be of any N×N dimension. For sample, purposes, the matrices are 10×10 in vector length in this example.


In this example, the first number in the sample matrix row index code is used to identify the matrix row index in the provisional matrix 404. In this example, the first digit is 4. The corresponding first number in the preliminary code (OTP) is 5.


Matrix row index 4 is identified and a search is performed to find the value of 5 within the matrix row. The value of 5 is then wiped out or erased from that row. The process repeats for each number in the sample matrix row index for the provisional code and the preliminary code (OTP). For example, in matrix row 9 the value of 7 is wiped, in row 3 the value of 8 is wiped, in row 2 the value of 1 is wiped, in row 1, the value of 9 is wiped, and lastly, in row 0 the value of 3 is wiped.


As a reminder, the numbers in the preliminary code (OTP) refers to matrix row indices. The corresponding numbers in the provisional code correspond to numbers that must be searched for and located within the individual matrix row.


As illustrated in 406, individual hash values are calculated for each matrix row. These hash values are then added together to generate the final authorization hash.



FIG. 5 depicts a Multi Device-Multi Channel Authorization Code Device Enrollment in accordance with one or more aspects of this disclosure. In S500, device characteristics enrollment codes are sent to a server that then attempts to validate the codes in S502. If the enrollment fails, the transaction is terminated or canceled in S504. If successful, the server generates a hash salt in S506. The device specific hash salt and unique ID are communicated from the server to the second-party device in S508. The server also stores the hash salt and the device characteristics in a server database such as in a device tale in S510.



FIGS. 6A and 6B identify exemplary server stored data for future validation and hashing as well as depict a Multi Device-Multi Channel Authorization code Sample Device Table in accordance with one or more aspects of this disclosure. Sample server stored data for future validation and hashing is stored in FIG. 6A and is shown in context in FIG. 6B.


As illustrated in FIG. 6A, the stored data for future validation and hashing is stored on the server 180 as shown in 600. A device type 602 is stored. This may include any secondary device not owned by the user and can include secondary devices such as ATMs, POS machines, self-service machines, etc. as referenced in FIG. 1.


Also stored on the server is one or more hash salts 604, which are unique hash salt(s) generated by a server for future hashing. Any type of device characteristics 606 may also be stored such as native/browser, operating system, hardware characteristics, etc.


Current user information 608 about the user logged into the device where the transaction request is originating is also stored. Preliminary Authorization code(s) that are generated and sent to the user are stored in memory as shown in element 610. Provisional Authorization code(s) 612 that are generated as N×N length (e.g., 10×10 as in FIG. 4) are stored and also sent to secondary devices.



FIG. 6B shows a sample device table containing each device ID 614 along with the corresponding types of server stored data referenced in FIG. 6A.



FIG. 7 shows a Multi Device-Multi Channel Authorization Code—Provisional and Preliminary Authorization Code Generation in accordance with one or more aspects of this disclosure. A user initiates an interaction and proposed transaction with a secondary device such as an ATM in S700. A server then attempts to validate device details S702 and, if successful, also validate the user S704. A failure of either results in a block of the transaction as well as potential other security related activity.


The server then proceeds to update the device table in S706, which results in an update to or exchange of information with the application database in S708 and generation of a provisional code by the server in S710, which is then provided to the secondary device in S718.


After validation in S704, the server also fetches table or other information in order to generate a preliminary code S712, which is used to update the device table in S712. It is also used to provide the preliminary code to the user in S711.


The server also exchanges or transmits the requisite information between the application database and the device update table in S714, which also contains the preliminary code.


The generated provisional code is provided to the secondary device as well as the device table that is being updated in S716 and then provided to the user in S718.



FIG. 8 shows a Multi Device-Multi Channel Authorization Code—Final Authorization Code Generation and Authentication Process in accordance with one or more aspects of this disclosure.


In S800, the user inputs manually or automatically the preliminary authorization code (OTP) resulting in generation of a random row array in S802 on a device side machine, the array being transmitted in S804 back to the wearable or portable device.


The user's wearable or other portable device sends the random row array in S806 to a server side machine that generates in S808 a final hash based on information retrieved S810 from a database housing the device table.


After generation of the random row array in S802, the ATM device proceeds to wipeout applicable matrix cells in S812 as explained supra. The modified matrix is then provided to an ATM server, which calculates a final hash in S814 based on the device details and store hash salt respectively provided in S816 and S818. The final ATM hash is transmitted in S820 to a machine on the server side. The app server on the server side then compares the server hash with the ATM has to determine if there is a match in S822. If there is a match, the transaction is authorized; otherwise, it is blocked.


Although the present technology has been described in detail for the purpose of illustration based on what is currently considered to be the most practical and preferred implementations, it is to be understood that such detail is solely for that purpose and that the technology is not limited to the disclosed implementations, but, on the contrary, is intended to cover modifications and equivalent arrangements that are within the spirit and scope of the appended claims. For example, it is to be understood that the present technology contemplates that, to the extent possible, one or more features of any implementation can be combined with one or more features of any other implementation.

Claims
  • 1. A multi-device multi-channel authorization process comprises the steps of: (a) generating, at an ATM, an authorization code for an ATM transaction;(b) transmitting, by the ATM to a server, the authorization code;(c) authenticating, by the server, the authorization code;(d) generating, by the server, a preliminary code;(e) transmitting, by the server to a user's electronic device, the preliminary code;(f) receiving, by the ATM, the preliminary code;(g) generating, by the server, a provisional matrix;(h) transmitting, by the server to the ATM, the provisional matrix;(i) generating, by the ATM, a matrix row index for the preliminary code;(j) transmitting, by the ATM to the server, the matrix row index;(k) converting, by the ATM, the provisional matrix into an ATM final matrix by wiping entries in the provisional matrix based on the matrix row index and the preliminary code;(l) converting, by the server, the provisional matrix into a server final matrix by wiping entries in the provisional matrix based on the matrix row index and the preliminary code;(m) hashing, by the ATM, the ATM final matrix into an ATM hash value for each row in the ATM final matrix;(n) hashing, by the server, the server final matrix into a server hash value for each row in the server final matrix;(o) generating, by the ATM, an ATM final authorization hash by combining each said ATM hash value;(p) generating, by the server, a server final authorization hash by combining each said server hash value; and(q) authorizing, by the ATM and the server, the ATM transaction if the ATM final authorization hash matches the server final authorization hash.
  • 2. The multi-device multi-channel authorization process of claim 1 in which the preliminary code is a one time password.
  • 3. The multi-device multi-channel authorization process of claim 2 in which the server final matrix and the ATM final matrix are salted.
  • 4. The multi-device multi-channel authorization process of claim 2 in which the server final matrix and the ATM final matrix are salted based on at least one device characteristic of a user's electronic device, which is in communication with the ATM to perform the ATM transaction.
  • 5. The multi-device multi-channel authorization process of claim 3 in which said wiping of said entries in the provisional matrix is performed on less than all rows in the provisional matrix.
  • 6. The multi-device multi-channel authorization process of claim 4 in which said wiping of said entries in the provisional matrix is performed on less than all rows in the provisional matrix.
  • 7. The multi-device multi-channel authorization process of claim 5 in which the steps are implemented as computer-executable instructions stored on computer-readable media.
  • 8. The multi-device multi-channel authorization process of claim 6 in which the steps are implemented as computer-executable instructions stored on computer-readable media.
  • 9. A multi-device multi-channel authorization process comprises the steps of: (a) receiving, at an electronic terminal, a preliminary authorization code;(b) generating, by the electronic terminal, a random row array;(c) transmitting, by the electronic terminal to a user's device; the random row array;(d) generating, by the electronic terminal, a provisional matrix;(e) wiping out, by the electronic terminal, one or more cells in the provisional matrix;(f) generating, by the electronic terminal, an electronic terminal final authorization hash based on one or more characteristics of said user's device and a stored hash salt;(g) transmitting, by the electronic terminal to a server, said electronic terminal final authorization hash;(h) receiving, by the server, the random row array;(i) generating, by the server, a server final authorization hash based on the random row array, said one or more characteristics of said user's device, and said stored hash salt;(j) comparing, by the server, the electronic terminal final authorization hash to the server final authorization hash;(k) generating, by the server, an authorization an electronic transaction if the electronic terminal final authorization hash matches the server final authorization hash; and(l) transmitting, by the server to the electronic terminal, the authorization for the electronic transaction.
  • 10. The multi-device multi-channel authorization process of claim 9 in which the user's device is in wireless communication with the server.
  • 11. The multi-device multi-channel authorization process of claim 10 in which the user's device is in wireless communication with the electronic terminal.
  • 12. The multi-device multi-channel authorization process of claim 11 in which the electronic terminal is an ATM.
  • 13. The multi-device multi-channel authorization process of claim 11 in which the electronic terminal is a POS machine.
  • 14. The multi-device multi-channel authorization process of claim 11 in which the electronic terminal is a self-service teller.
  • 15. The multi-device multi-channel authorization process of claim 11 in which the electronic terminal is a public terminal.
  • 16. The multi-device multi-channel authorization process of claim 12 in which the user's device is a wearable smart device.
  • 17. The multi-device multi-channel authorization process of claim 12 in which the user's device is a portable smartphone.
  • 18. The multi-device multi-channel authorization process of claim 16 in which the steps are implemented as computer-executable instructions stored on computer-readable media.
  • 19. The multi-device multi-channel authorization process of claim 17 in which the steps are implemented as computer-executable instructions stored on computer-readable media.
  • 20. A multi-device multi-channel authorization process comprises the steps of: (a) generating, by a server, a random length vector;(b) transmitting, by the server to an ATM, the random length vector;(c) generating, by the server, a one time passcode;(d) transmitting, by the server to a user's electronic device, the one time passcode;(e) receiving, by the ATM, the one time passcode;(f) generating, by the ATM, an ATM matrix with wiped out ATM cells based on the one time passcode;(g) generating, by the server, a server matrix with wiped out server cells based on the one time passcode;(h) generating, by the ATM, an ATM final authorization code by hashing the random length vector with device salt and device characteristics for said user's electronic device;(i) generating, by the server, a server final authorization code by hashing the random length vector with said device salt and said device characteristics for said user's electronic device;(j) comparing, by the server, the ATM final authorization code and the server final authorization code; and(k) authorizing, by the server, a transaction if the ATM final authorization code matches the server final authorization code.