> libnbd.x86_64: W: crypto-policy-non-compliance-gnutls-1 
> /usr/lib64/libnbd.so.0.0.0 gnutls_priority_set_direct
> This application package calls a function to explicitly set crypto ciphers for
> SSL/TLS. That may cause the application not to use the system-wide set
> cryptographic policy and should be modified in accordance to:
> https://fedoraproject.org/wiki/Packaging:CryptoPolicies

The library does call gnutls_priority_set_direct, but in a way which I
believe still uses the system policies:

  %prep
  ./configure --with-tls-priority=@LIBNBD,SYSTEM

sets ...

  #define TLS_PRIORITY "@LIBNBD,SYSTEM"

which calls ...

  err = gnutls_priority_set_direct (session, TLS_PRIORITY, NULL);

So we're good and we can ignore this warning, right?

I should note that I copied this coding pattern from libvirt.

Rich.

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
virt-df lists disk usage of guests without needing to install any
software inside the virtual machine.  Supports Linux and Windows.
http://people.redhat.com/~rjones/virt-df/
_______________________________________________
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org

Reply via email to