crypto_box_dev.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. //go:build dev
  2. // +build dev
  3. package cryptobox
  4. func CryptoBoxSeedBytes() int {
  5. return 0
  6. }
  7. func CryptoBoxPublicKeyBytes() int {
  8. return 0
  9. }
  10. func CryptoBoxSecretKeyBytes() int {
  11. return 0
  12. }
  13. func CryptoBoxNonceBytes() int {
  14. return 0
  15. }
  16. func CryptoBoxMacBytes() int {
  17. return 0
  18. }
  19. func CryptoBoxPrimitive() string {
  20. return ""
  21. }
  22. func CryptoBoxBeforeNmBytes() int {
  23. return 0
  24. }
  25. func CryptoBoxZeroBytes() int {
  26. return 0
  27. }
  28. func CryptoBoxBoxZeroBytes() int {
  29. return 0
  30. }
  31. func CryptoBoxSeedKeyPair(seed []byte) ([]byte, []byte, int) {
  32. return nil, nil, 0
  33. }
  34. func CryptoBoxKeyPair() ([]byte, []byte, int) {
  35. return nil, nil, 0
  36. }
  37. func CryptoBoxBeforeNm(pk []byte, sk []byte) ([]byte, int) {
  38. return nil, 0
  39. }
  40. func CryptoBox(m []byte, n []byte, pk []byte, sk []byte) ([]byte, int) {
  41. return nil, 0
  42. }
  43. func CryptoBoxOpen(c []byte, n []byte, pk []byte, sk []byte) ([]byte, int) {
  44. return nil, 0
  45. }
  46. func CryptoBoxAfterNm(m []byte, n []byte, k []byte) ([]byte, int) {
  47. return nil, 0
  48. }
  49. func CryptoBoxOpenAfterNm(c []byte, n []byte, k []byte) ([]byte, int) {
  50. return nil, 0
  51. }
  52. func CryptoBoxGetSecretPublicKeyFrom(keypair []byte) (sk, pk []byte, err error) {
  53. return
  54. }