Blame view

App/utils/SecurityUtils.swift 201 Bytes
d774f0637   Trịnh Văn Quân   fisrt comit
1
2
3
4
5
6
7
8
9
10
11
12
13
  
  import Foundation
  
  class SecurityUtils{
      
      static func decryptData(data: Data) -> String?{
          return nil
      }
  
      static func decryptData(data: Data) -> Data?{
          return nil
      }
  }