ya.make 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. PY2_LIBRARY()
  2. LICENSE(BSD-3-Clause)
  3. VERSION(3.3.2)
  4. IF (PYTHON2)
  5. PEERDIR(
  6. contrib/deprecated/python/enum34
  7. contrib/deprecated/python/ipaddress
  8. )
  9. ENDIF()
  10. PEERDIR(
  11. contrib/libs/openssl
  12. contrib/python/cffi
  13. # contrib/python/idna
  14. # contrib/python/asn1crypto
  15. contrib/python/setuptools
  16. contrib/python/six
  17. )
  18. NO_COMPILER_WARNINGS()
  19. NO_LINT()
  20. RESOURCE_FILES(
  21. PREFIX contrib/python/cryptography/py2/
  22. .dist-info/METADATA
  23. .dist-info/top_level.txt
  24. )
  25. SRCS(
  26. build/temp.linux-x86_64-2.7/_openssl.c
  27. build/temp.linux-x86_64-2.7/_padding.c
  28. )
  29. PY_REGISTER(
  30. cryptography.hazmat.bindings._openssl
  31. cryptography.hazmat.bindings._padding
  32. )
  33. PY_SRCS(
  34. TOP_LEVEL
  35. cryptography/__about__.py
  36. cryptography/__init__.py
  37. cryptography/exceptions.py
  38. cryptography/fernet.py
  39. cryptography/hazmat/__init__.py
  40. cryptography/hazmat/_der.py
  41. cryptography/hazmat/_oid.py
  42. cryptography/hazmat/backends/__init__.py
  43. cryptography/hazmat/backends/interfaces.py
  44. cryptography/hazmat/backends/openssl/__init__.py
  45. cryptography/hazmat/backends/openssl/aead.py
  46. cryptography/hazmat/backends/openssl/backend.py
  47. cryptography/hazmat/backends/openssl/ciphers.py
  48. cryptography/hazmat/backends/openssl/cmac.py
  49. cryptography/hazmat/backends/openssl/decode_asn1.py
  50. cryptography/hazmat/backends/openssl/dh.py
  51. cryptography/hazmat/backends/openssl/dsa.py
  52. cryptography/hazmat/backends/openssl/ec.py
  53. cryptography/hazmat/backends/openssl/ed25519.py
  54. cryptography/hazmat/backends/openssl/ed448.py
  55. cryptography/hazmat/backends/openssl/encode_asn1.py
  56. cryptography/hazmat/backends/openssl/hashes.py
  57. cryptography/hazmat/backends/openssl/hmac.py
  58. cryptography/hazmat/backends/openssl/ocsp.py
  59. cryptography/hazmat/backends/openssl/poly1305.py
  60. cryptography/hazmat/backends/openssl/rsa.py
  61. cryptography/hazmat/backends/openssl/utils.py
  62. cryptography/hazmat/backends/openssl/x25519.py
  63. cryptography/hazmat/backends/openssl/x448.py
  64. cryptography/hazmat/backends/openssl/x509.py
  65. cryptography/hazmat/bindings/__init__.py
  66. cryptography/hazmat/bindings/openssl/__init__.py
  67. cryptography/hazmat/bindings/openssl/_conditional.py
  68. cryptography/hazmat/bindings/openssl/binding.py
  69. cryptography/hazmat/primitives/__init__.py
  70. cryptography/hazmat/primitives/asymmetric/__init__.py
  71. cryptography/hazmat/primitives/asymmetric/dh.py
  72. cryptography/hazmat/primitives/asymmetric/dsa.py
  73. cryptography/hazmat/primitives/asymmetric/ec.py
  74. cryptography/hazmat/primitives/asymmetric/ed25519.py
  75. cryptography/hazmat/primitives/asymmetric/ed448.py
  76. cryptography/hazmat/primitives/asymmetric/padding.py
  77. cryptography/hazmat/primitives/asymmetric/rsa.py
  78. cryptography/hazmat/primitives/asymmetric/utils.py
  79. cryptography/hazmat/primitives/asymmetric/x25519.py
  80. cryptography/hazmat/primitives/asymmetric/x448.py
  81. cryptography/hazmat/primitives/ciphers/__init__.py
  82. cryptography/hazmat/primitives/ciphers/aead.py
  83. cryptography/hazmat/primitives/ciphers/algorithms.py
  84. cryptography/hazmat/primitives/ciphers/base.py
  85. cryptography/hazmat/primitives/ciphers/modes.py
  86. cryptography/hazmat/primitives/cmac.py
  87. cryptography/hazmat/primitives/constant_time.py
  88. cryptography/hazmat/primitives/hashes.py
  89. cryptography/hazmat/primitives/hmac.py
  90. cryptography/hazmat/primitives/kdf/__init__.py
  91. cryptography/hazmat/primitives/kdf/concatkdf.py
  92. cryptography/hazmat/primitives/kdf/hkdf.py
  93. cryptography/hazmat/primitives/kdf/kbkdf.py
  94. cryptography/hazmat/primitives/kdf/pbkdf2.py
  95. cryptography/hazmat/primitives/kdf/scrypt.py
  96. cryptography/hazmat/primitives/kdf/x963kdf.py
  97. cryptography/hazmat/primitives/keywrap.py
  98. cryptography/hazmat/primitives/padding.py
  99. cryptography/hazmat/primitives/poly1305.py
  100. cryptography/hazmat/primitives/serialization/__init__.py
  101. cryptography/hazmat/primitives/serialization/base.py
  102. cryptography/hazmat/primitives/serialization/pkcs12.py
  103. cryptography/hazmat/primitives/serialization/pkcs7.py
  104. cryptography/hazmat/primitives/serialization/ssh.py
  105. cryptography/hazmat/primitives/twofactor/__init__.py
  106. cryptography/hazmat/primitives/twofactor/hotp.py
  107. cryptography/hazmat/primitives/twofactor/totp.py
  108. cryptography/hazmat/primitives/twofactor/utils.py
  109. cryptography/utils.py
  110. cryptography/x509/__init__.py
  111. cryptography/x509/base.py
  112. cryptography/x509/certificate_transparency.py
  113. cryptography/x509/extensions.py
  114. cryptography/x509/general_name.py
  115. cryptography/x509/name.py
  116. cryptography/x509/ocsp.py
  117. cryptography/x509/oid.py
  118. )
  119. END()